Skip to content

Add support for Python 3.13 #338

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
name: "Build and test on aarch64"
strategy:
matrix:
pyver: [cp310-cp310, cp312-cp312]
pyver: [cp310-cp310, cp313-cp313]
fail-fast: false
runs-on: ubuntu-latest
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cibuildwheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
python -m pip install cibuildwheel
python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: 'cp39-win32 cp310-win32 cp311-win32 cp312-win32'
CIBW_BUILD: 'cp39-win32 cp310-win32 cp311-win32 cp312-win32, cp313-win32'
CIBW_BEFORE_BUILD: pip install -r requirements.txt
CIBW_BEFORE_TEST: pip install numpy
CIBW_TEST_COMMAND: python -m blosc.test
Expand All @@ -69,7 +69,7 @@ jobs:
python -m pip install cibuildwheel
python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: 'cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64'
CIBW_BUILD: 'cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64 cp313-win_amd64'
CIBW_BEFORE_BUILD: pip install -r requirements.txt
CIBW_BEFORE_TEST: pip install numpy
CIBW_TEST_COMMAND: python -m blosc.test
Expand All @@ -81,7 +81,7 @@ jobs:
python -m pip install cibuildwheel
python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-*'
CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-* cp313-*'
CIBW_SKIP: '*-manylinux*_i686'
CIBW_ARCHS_MACOS: "x86_64 arm64"
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def cmake_bool(cond):
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Archiving :: Compression
Expand Down