Skip to content

Commit 7a52aab

Browse files
authored
Merge pull request #2 from OpenSourceBrain/development
Ensure tests pass
2 parents d3b12c0 + 53376e0 commit 7a52aab

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/omv-ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,17 @@ jobs:
2424
uses: actions/setup-python@v5
2525
with:
2626
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
2732
2833
- name: Install OMV
2934
run: |
3035
pip install git+https://github.com/OpenSourceBrain/osb-model-validation
3136
pip install scipy sympy matplotlib cython pandas tables
37+
pip install setuptools --upgrade # needed for Eden on py 3.12
3238
3339
- name: Run OMV tests on engine ${{ matrix.engine }}
3440
run: |

0 commit comments

Comments
 (0)