Skip to content

Commit

Permalink
Only install pcodec on <3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
dstansby committed Sep 15, 2024
1 parent 317f5b6 commit 03cee4d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,15 @@ jobs:
conda activate env
export DISABLE_NUMCODECS_AVX2=""
# TODO: put back zfpy import when it supports numpy 2.0
python -m pip install -v -e .[test,test_extras,msgpack,pcodec]
python -m pip install -v -e .[test,test_extras,msgpack]
- name: Install pcodec
if: matrix.python-version != '3.13.0rc2'
shell: "bash -l {0}"
run: |
conda activate env
python -m pip install -v pcodec
# This is used to test with zfpy, which does not yet support numpy 2.0
- name: Install older numpy and zfpy
Expand Down

0 comments on commit 03cee4d

Please sign in to comment.