Skip to content

Commit

Permalink
Merge pull request #79 from FlickerSoul/dev
Browse files Browse the repository at this point in the history
Make Python 3.13 Compatible
  • Loading branch information
Julian authored Jul 8, 2024
2 parents 2fce424 + 605215e commit 6c32fc2
Show file tree
Hide file tree
Showing 5 changed files with 253 additions and 323 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
3.10
3.11
3.12
3.13
pypy3.10
allow-prereleases: true
- name: Set up nox
Expand Down
183 changes: 33 additions & 150 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ rpds = "1.1.0"
archery = "1.2.0"

[dependencies.pyo3]
version = "0.20.3"
version = "0.22.1"
features = ["extension-module"]
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
path.parent / f"{path.stem}.in" for path in REQUIREMENTS.values()
]

SUPPORTED = ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10"]
SUPPORTED = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"]
LATEST = "3.12"

nox.options.sessions = []
Expand Down
Loading

0 comments on commit 6c32fc2

Please sign in to comment.