Skip to content

Commit a1ce161

Browse files
authored
Merge branch 'main' into macos-runner-13
2 parents ecd7062 + f0a0c16 commit a1ce161

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+248
-49
lines changed

.github/workflows/ci.yaml

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

1919
steps:
@@ -61,19 +61,19 @@ 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]
64+
python -m pip install -v -e .[test,test_extras,msgpack,crc32c]
6565
6666
- name: Install pcodec
67-
if: matrix.python-version != '3.13.0'
67+
if: matrix.python-version != '3.13'
6868
shell: "bash -l {0}"
6969
run: |
7070
conda activate env
71-
python -m pip install -v pcodec
71+
python -m pip install -v ".[pcodec]"
7272
7373
7474
# This is used to test with zfpy, which does not yet support numpy 2.0
7575
- name: Install older numpy and zfpy
76-
if: matrix.python-version == '3.10'
76+
if: matrix.python-version == '3.11'
7777
shell: "bash -l {0}"
7878
run: |
7979
conda activate env

.github/workflows/wheel.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
1818
env:
1919
CIBW_TEST_COMMAND: python -c "import numcodecs"
20-
CIBW_BUILD: "cp310-* cp311-* cp312-* cp313-*"
20+
CIBW_BUILD: "cp311-* cp312-* cp313-*"
2121
CIBW_SKIP: "pp* *-musllinux_* *win32 *_i686 *_s390x"
2222
# note: CIBW_ENVIRONMENT is now set in pyproject.toml
2323

@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/setup-python@v5
4545
name: Install Python
4646
with:
47-
python-version: "3.10"
47+
python-version: "3.11"
4848

4949
- name: Build sdist
5050
run: pipx run build --sdist

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repos:
1515
- id: debug-statements
1616

1717
- repo: https://github.com/astral-sh/ruff-pre-commit
18-
rev: v0.7.0
18+
rev: v0.7.1
1919
hooks:
2020
- id: ruff
2121
args: ["--fix", "--show-fixes"]

docs/checksum32.rst

Lines changed: 11 additions & 0 deletions

docs/release.rst

Lines changed: 15 additions & 0 deletions

fixture/adler32/array.05.npy

7.94 KB
Binary file not shown.

fixture/adler32/array.06.npy

7.94 KB
Binary file not shown.

fixture/adler32/array.07.npy

7.94 KB
Binary file not shown.

fixture/adler32/array.08.npy

7.94 KB
Binary file not shown.

fixture/adler32/array.09.npy

7.94 KB
Binary file not shown.

0 commit comments

Comments
 (0)