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.
1 parent 08d9a2e commit 18cf5eaCopy full SHA for 18cf5ea
.github/workflows/io-test.yml
@@ -19,7 +19,6 @@ jobs:
19
fail-fast: true
20
matrix:
21
python-version: ['3.9', '3.12']
22
- numpy-version: ['1.26.4']
23
defaults:
24
# by default run in bash mode (required for conda usage)
25
run:
@@ -91,9 +90,11 @@ jobs:
91
90
- name: Install neo including dependencies
92
# installation with dependencies is only required if no cache was found
93
# restore-key hits should result in `cache-hit` == 'false'
+ # in the run we limit numpy for now. Change this in the next phase of numpy 2.0 support.
94
if: steps.cache-conda-env.outputs.cache-hit != 'true'
95
run: |
96
pip install --upgrade -e .
97
+ pip install numpy==1.26.4
98
pip install .[test]
99
100
- name: Install neo without dependencies
0 commit comments