We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d3b12c0 + 53376e0 commit 7a52aabCopy full SHA for 7a52aab
.github/workflows/omv-ci.yml
@@ -24,11 +24,17 @@ jobs:
24
uses: actions/setup-python@v5
25
with:
26
python-version: ${{ matrix.python-version }}
27
+
28
+ - name: Install numpy < 2 if necessary...
29
+ run: |
30
+ if [[ ${{ matrix.engine }} == *"MOOSE"* ]] || [[ ${{ matrix.engine }} == *"Moose"* ]]; then pip install "numpy<2" ; fi ;
31
+ pip list
32
33
- name: Install OMV
34
run: |
35
pip install git+https://github.com/OpenSourceBrain/osb-model-validation
36
pip install scipy sympy matplotlib cython pandas tables
37
+ pip install setuptools --upgrade # needed for Eden on py 3.12
38
39
- name: Run OMV tests on engine ${{ matrix.engine }}
40
0 commit comments