Skip to content

Commit

Permalink
Fix build and run tests on Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshilliard committed Oct 8, 2024
1 parent de13727 commit a950374
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
- "cp310-*"
- "cp311-*"
- "cp312-*"
- "cp313-*"
exclude:
- os: ubuntu-latest
cibw_arch: universal2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [windows-latest, ubuntu-latest, macos-latest]

env:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

ROOT = pathlib.Path(__file__).parent

CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<0.30.0)'
CYTHON_DEPENDENCY = 'Cython>=0.29.24'


class httptools_build_ext(build_ext):
Expand Down

0 comments on commit a950374

Please sign in to comment.