Skip to content

Commit ff0811b

Browse files
authored
Add conditional numpy installation for MOOSE engine
Added conditional installation of numpy version less than 2 for MOOSE engine.
1 parent 7de611b commit ff0811b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/omv-ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ jobs:
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727

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+
2833
- name: Install OMV
2934
run: |
3035
pip install git+https://github.com/OpenSourceBrain/osb-model-validation

0 commit comments

Comments
 (0)