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 18cf5ea commit f36daa8Copy full SHA for f36daa8
.github/workflows/io-test.yml
@@ -90,11 +90,11 @@ jobs:
90
- name: Install neo including dependencies
91
# installation with dependencies is only required if no cache was found
92
# 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.
+ # in the run we don't do upgrade to prevent forced numpy 2.0. when ready
94
+ # change to pip install --upgrade -e . instead.
95
if: steps.cache-conda-env.outputs.cache-hit != 'true'
96
run: |
- pip install --upgrade -e .
97
- pip install numpy==1.26.4
+ pip install -e .
98
pip install .[test]
99
100
- name: Install neo without dependencies
0 commit comments