Skip to content

Commit af51bab

Browse files
committed
Support Python 3.13
1 parent 2aaaba6 commit af51bab

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
matrix:
5252
os: [ubuntu-latest]
53-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
53+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
5454
include:
5555
- os: macos-13
5656
python-version: "3.10"
@@ -88,7 +88,7 @@ jobs:
8888
with:
8989
fetch-depth: 0 # required for setuptools_scm
9090
- name: Build wheels
91-
uses: pypa/cibuildwheel@v2.17.0
91+
uses: pypa/cibuildwheel@v2.21.3
9292
env:
9393
CIBW_BUILD: "cp*-manylinux_x86_64 cp3*-win_amd64 cp3*-macosx_x86_64 cp3*-macosx_arm64"
9494
CIBW_SKIP: "cp37-*"

CHANGES.rst

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog
33
=========
44

5+
unreleased
6+
----------
7+
8+
* Added support for Python 3.13
9+
510
v1.2.0 (2023-12-11)
611
-------------------
712

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = flake8,black,mypy,docs,py38,py39,py310,py311,py312
2+
envlist = flake8,black,mypy,docs,py38,py39,py310,py311,py312,py313
33
isolated_build = True
44

55
[testenv]

0 commit comments

Comments
 (0)