-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support Python 3.13 (not free-threaded) (#711)
* Build Python 3.13 wheels (not free-threaded) * Include cp313 wheels for testing * Build Python 3.13 wheels only for testing * Remove trove classifier * Update for Python 3.13.0rc1 * Clean up * Bump cibuildwheel to 2.21.1 * Upgrade deprecated artifact actions * Update for Python 3.13.0rc3 * Bump cibuildwheel to 2.21.3 to use Python 3.13.0 final * Squash _eval_type warning * Still use _PyUnicode_EQ for older pythons Keeps around the semantic meaning for when this function is added back in Python 3.14. * Use `PyObject_GetIter` for all versions * Use PyLong_AsNativeBytes on Py3.13 * Suppress hashing error when parsing annotated types --------- Co-authored-by: Jim Crist-Harif <[email protected]>
- Loading branch information
1 parent
51a261c
commit 7ade469
Showing
4 changed files
with
61 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,8 @@ omit = | |
markers = | ||
mypy | ||
pyright | ||
filterwarnings = | ||
error | ||
|
||
[versioneer] | ||
VCS = git | ||
|