Skip to content

Commit 2296190

Browse files
committed
Only install pcodec on <3.13
1 parent f83c49a commit 2296190

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,15 @@ jobs:
6161
conda activate env
6262
export DISABLE_NUMCODECS_AVX2=""
6363
# TODO: put back zfpy import when it supports numpy 2.0
64-
python -m pip install -v -e .[test,test_extras,msgpack,pcodec]
64+
python -m pip install -v -e .[test,test_extras,msgpack]
65+
66+
- name: Install pcodec
67+
if: matrix.python-version != '3.13.0rc2'
68+
shell: "bash -l {0}"
69+
run: |
70+
conda activate env
71+
python -m pip install -v pcodec
72+
6573
6674
# This is used to test with zfpy, which does not yet support numpy 2.0
6775
- name: Install older numpy and zfpy

0 commit comments

Comments
 (0)