Skip to content

Commit 1d6114d

Browse files
committed
Improve install reqs
1 parent 274d4f4 commit 1d6114d

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ci_pip.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,21 @@ jobs:
2626
python-version: ${{ matrix.python-version }}
2727

2828

29+
- name: Install numpy < 2 if necessary...
30+
run: |
31+
pip install "numpy<2"
32+
pip list
33+
2934
- name: Install Moose
3035
run: |
3136
37+
pip install setuptools --upgrade # needed for Eden on py 3.12
38+
3239
pip install pyneuroml scipy pint # missing(?) dependencies
3340
3441
pip install pymoose
3542
pip list
3643
37-
- name: Install numpy < 2 if necessary...
38-
run: |
39-
pip install "numpy<2"
40-
pip list
4144
4245
- name: Test Moose files
4346
run: |

0 commit comments

Comments
 (0)