Skip to content

Commit 18cf5ea

Browse files
committed
try limiting to 1.26.4 during install
1 parent 08d9a2e commit 18cf5ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/io-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
fail-fast: true
2020
matrix:
2121
python-version: ['3.9', '3.12']
22-
numpy-version: ['1.26.4']
2322
defaults:
2423
# by default run in bash mode (required for conda usage)
2524
run:
@@ -91,9 +90,11 @@ jobs:
9190
- name: Install neo including dependencies
9291
# installation with dependencies is only required if no cache was found
9392
# restore-key hits should result in `cache-hit` == 'false'
93+
# in the run we limit numpy for now. Change this in the next phase of numpy 2.0 support.
9494
if: steps.cache-conda-env.outputs.cache-hit != 'true'
9595
run: |
9696
pip install --upgrade -e .
97+
pip install numpy==1.26.4
9798
pip install .[test]
9899
99100
- name: Install neo without dependencies

0 commit comments

Comments
 (0)