Upgrade runner environment#152
Conversation
|
I gave the matrix options more generic names, so that we can later decide to write |
|
|
||
| cmake_minimum_required(VERSION 3.22.1) | ||
| find_package(Python 3.8 REQUIRED COMPONENTS Interpreter NumPy) | ||
| find_package(Python 3.8 REQUIRED COMPONENTS Interpreter) |
There was a problem hiding this comment.
The NumPy option was actually superfluous. It instructs CMake to search for NumPy header files, but those are not actually needed, since we are not compiling any source code. The presence of NumPy here can trigger a CMake runtime error on HPC clusters under unclear (and hard to reproduce) circumstances.
|
LGTM |
No description provided.