Skip to content

Commit a950374

Browse files
committed
Fix build and run tests on Python 3.13
1 parent de13727 commit a950374

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ jobs:
7878
- "cp310-*"
7979
- "cp311-*"
8080
- "cp312-*"
81+
- "cp313-*"
8182
exclude:
8283
- os: ubuntu-latest
8384
cibw_arch: universal2

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1818
os: [windows-latest, ubuntu-latest, macos-latest]
1919

2020
env:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
ROOT = pathlib.Path(__file__).parent
1717

18-
CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<0.30.0)'
18+
CYTHON_DEPENDENCY = 'Cython>=0.29.24'
1919

2020

2121
class httptools_build_ext(build_ext):

0 commit comments

Comments
 (0)