-
Notifications
You must be signed in to change notification settings - Fork 31
Add support for free-threaded build #53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
2f9a29a
bf80e4e
bca0795
b9e76ce
46db9f0
a7a013c
52b14ea
75daab2
849b315
37c5828
605ed1d
0dd50c6
53bb400
05e8576
97d1eee
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,15 @@ | ||
| [build-system] | ||
| requires = [ | ||
| "setuptools", | ||
| "cython>=0.25", | ||
| "cython>=3.1", | ||
| ] | ||
| build-backend = "setuptools.build_meta" | ||
|
|
||
| [tool.cibuildwheel] | ||
| build = "*" | ||
| skip = "pp* cp36* cp37* cp38*" | ||
| test-skip = "" | ||
| free-threaded-support = false | ||
| enable = ["cpython-freethreading"] | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since the thread safety guarantees we're adding depend critically on details of how critical sections work and we haven't and don't really want to do careful thread safety testing on 3.13t, can you delete this? It's not required to build cp314t wheels. But do keep the deletion of |
||
|
|
||
| archs = ["native"] | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| cython>=0.25 | ||
| cython>=3.1 | ||
| pytest |
Uh oh!
There was an error while loading. Please reload this page.