Skip to content

Commit 1e81463

Browse files
committed
Merge branch 'zarr-developers-main'
2 parents 08e91f2 + f2b6890 commit 1e81463

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 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", "3.13"]
15+
python-version: ["3.11", "3.12", "3.13"]
1616
# macos-12 is an intel runner, macos-14 is a arm64 runner
1717
platform: [ubuntu-latest, windows-latest, macos-12, macos-14]
1818

@@ -68,12 +68,12 @@ jobs:
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-12, 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

docs/release.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@ Enhancements
2525
* Add Crc32c checksum codec
2626
By :user:`Norman Rzepka <normanrz>`, :issue:`613`.
2727

28+
Maintenance
29+
~~~~~~~~~~~
30+
* The minimum supported Python version is now Python 3.11.
31+
By :user:`David Stansby <dstansby>`, :issue:`622`
32+
* The minimum supported numpy version is now 1.24.
33+
By :user:`David Stansby <dstansby>`, :issue:`622`
34+
2835
.. _release_0.13.1:
2936

3037
0.13.1

0 commit comments

Comments
 (0)