Skip to content

Commit

Permalink
Build Python 3.13 wheels (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrluanma authored Oct 28, 2024
1 parent 66b131c commit 538ad4b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nox-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]

name: Test Python ${{ matrix.python-version }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Install build deps
run: |
python -m pip --disable-pip-version-check install cibuildwheel==2.16.2 twine==4.0.2 setuptools
python -m pip --disable-pip-version-check install cibuildwheel==2.21.3 twine==5.1.1 setuptools
- uses: docker/setup-qemu-action@v1
if: runner.os == 'Linux'
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import nox


@nox.session(py=['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'])
@nox.session(py=['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'])
def unit(session):
session.install('pytest', 'pytest-cov')
session.install('.')
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ def finalize_options(self):
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
package_dir={'': 'src'},
packages=find_packages(where='src'),
Expand Down

0 comments on commit 538ad4b

Please sign in to comment.