Skip to content

Commit 4798903

Browse files
authored
Add Python 3.13 to build (#334)
.
1 parent 537e1e1 commit 4798903

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

.github/workflows/build-wheels.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
- name: Build manylinux2014 x86-64 wheels
1212
uses: earwig/python-wheels-manylinux-build@latest-manylinux2014_x86_64
1313
with:
14-
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312'
14+
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313'
1515
- name: Build manylinux 2014 aarch64 wheels
1616
uses: earwig/python-wheels-manylinux-build@latest-manylinux2014_aarch64
1717
with:
18-
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312'
18+
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313'
1919
- uses: actions/upload-artifact@v3
2020
with:
2121
name: wheels
@@ -38,6 +38,7 @@ jobs:
3838
- '3.10'
3939
- '3.11'
4040
- '3.12'
41+
- '3.13'
4142
steps:
4243
- uses: actions/checkout@v4
4344
- uses: actions/setup-python@v5

.github/workflows/run-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
- '3.10'
1313
- '3.11'
1414
- '3.12'
15+
- '3.13'
1516
with-extension: ['0', '1']
1617
steps:
1718
- uses: actions/checkout@v4

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
build:
33
os: ubuntu-22.04
44
tools:
5-
python: "3.12"
5+
python: "3.13"
66

77
sphinx:
88
configuration: docs/conf.py

appveyor.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,14 @@ environment:
6161
PYTHON_VERSION: "3.12"
6262
PYTHON_ARCH: "64"
6363

64+
- PYTHON: "C:\\Python313"
65+
PYTHON_VERSION: "3.13"
66+
PYTHON_ARCH: "32"
67+
68+
- PYTHON: "C:\\Python313-x64"
69+
PYTHON_VERSION: "3.13"
70+
PYTHON_ARCH: "64"
71+
6472
install:
6573
- "%PIP% install --disable-pip-version-check --user --upgrade pip"
6674
- "%PIP% install setuptools wheel twine pytest"

0 commit comments

Comments
 (0)