From c1e3249d14acebe9f2432ab0c9409341a1aaad39 Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Fri, 5 Jan 2024 12:23:23 +0100 Subject: [PATCH] .. --- .github/workflows/test_python_cplusplus.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_python_cplusplus.yml b/.github/workflows/test_python_cplusplus.yml index f923927892..608a06453c 100644 --- a/.github/workflows/test_python_cplusplus.yml +++ b/.github/workflows/test_python_cplusplus.yml @@ -290,7 +290,9 @@ jobs: run: brew install hdf5 swig gcc cppcheck libomp boost - name: Install python package - run: scripts/installAmiciSource.sh + run: | + pip show numpy > /dev/null || python3 -m pip install numpy + scripts/installAmiciSource.sh - name: Check OpenMP support run: source build/venv/bin/activate && python -c "import amici; import sys; sys.exit(not amici.compiledWithOpenMP())"