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 bfb9063 commit 56d03adCopy full SHA for 56d03ad
.github/workflows/ci.yaml
@@ -62,6 +62,14 @@ jobs:
62
# TODO: put back zfpy import when it supports numpy 2.0
63
python -m pip install -v -e .[test,test_extras,msgpack,pcodec]
64
65
+ # This is used to test with zfpy, which does not yet support numpy 2.0
66
+ - name: Install older numpy and zfpy
67
+ if: ${{ matrix.python-version }} == '3.10'
68
+ shell: "bash -l {0}"
69
+ run: |
70
+ conda activate env
71
+ python -m pip install zfpy>1 numpy<2
72
+
73
- name: List installed packages
74
shell: "bash -l {0}"
75
run: |
0 commit comments