Skip to content

Commit 6ee5d3d

Browse files
dstansbyjakirkham
andauthored
Test on Python 3.13 (#576)
* Test on Python 3.13 Add python-rc Try label Try again * Only install pcodec on <3.13 * Update Python 3.13.0 to release version Co-authored-by: jakirkham <[email protected]> --------- Co-authored-by: jakirkham <[email protected]>
1 parent 71fcab0 commit 6ee5d3d

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.10", "3.11", "3.12"]
15+
python-version: ["3.10", "3.11", "3.12", "3.13.0"]
1616
# macos-12 is an intel runner, macos-14 is a arm64 runner
1717
platform: [ubuntu-latest, windows-latest, macos-12, macos-14]
1818

@@ -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.0'
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)