Skip to content

Commit 0e37cac

Browse files
authored
Merge pull request #338 from dstansby/main
Add support for Python 3.13
2 parents e909434 + 4894e4d commit 0e37cac

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, windows-latest, macos-latest]
12-
python-version: ['3.9', '3.10', '3.11', '3.12']
12+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1313

1414
steps:
1515
- uses: actions/checkout@v4
@@ -39,7 +39,7 @@ jobs:
3939
name: "Build and test on aarch64"
4040
strategy:
4141
matrix:
42-
pyver: [cp310-cp310, cp312-cp312]
42+
pyver: [cp310-cp310, cp313-cp313]
4343
fail-fast: false
4444
runs-on: ubuntu-latest
4545
env:

.github/workflows/cibuildwheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
python -m pip install cibuildwheel
5353
python -m cibuildwheel --output-dir wheelhouse
5454
env:
55-
CIBW_BUILD: 'cp39-win32 cp310-win32 cp311-win32 cp312-win32'
55+
CIBW_BUILD: 'cp39-win32 cp310-win32 cp311-win32 cp312-win32, cp313-win32'
5656
CIBW_BEFORE_BUILD: pip install -r requirements.txt
5757
CIBW_BEFORE_TEST: pip install numpy
5858
CIBW_TEST_COMMAND: python -m blosc.test
@@ -69,7 +69,7 @@ jobs:
6969
python -m pip install cibuildwheel
7070
python -m cibuildwheel --output-dir wheelhouse
7171
env:
72-
CIBW_BUILD: 'cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64'
72+
CIBW_BUILD: 'cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64 cp313-win_amd64'
7373
CIBW_BEFORE_BUILD: pip install -r requirements.txt
7474
CIBW_BEFORE_TEST: pip install numpy
7575
CIBW_TEST_COMMAND: python -m blosc.test
@@ -81,7 +81,7 @@ jobs:
8181
python -m pip install cibuildwheel
8282
python -m cibuildwheel --output-dir wheelhouse
8383
env:
84-
CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-*'
84+
CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-* cp313-*'
8585
CIBW_SKIP: '*-manylinux*_i686'
8686
CIBW_ARCHS_MACOS: "x86_64 arm64"
8787
CIBW_ARCHS_LINUX: ${{ matrix.arch }}

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def cmake_bool(cond):
5757
Programming Language :: Python :: 3.10
5858
Programming Language :: Python :: 3.11
5959
Programming Language :: Python :: 3.12
60+
Programming Language :: Python :: 3.13
6061
Programming Language :: Python :: 3 :: Only
6162
Topic :: Software Development :: Libraries :: Python Modules
6263
Topic :: System :: Archiving :: Compression

0 commit comments

Comments
 (0)