-
Notifications
You must be signed in to change notification settings - Fork 4.2k
GH-43519: [Python] Set up wheel building for Python 3.13 #43539
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 1 commit
ed4e9d1
58617a6
cca8c65
b6cabf0
b5d172b
7040788
1d03354
511f31d
f33cf7d
7685c96
6b36d3f
14185ab
3ed915c
13c28c3
975d5ec
b662379
1b836c7
4f5c3f6
93b06a3
89965c1
eab3cfd
489bae6
00efbd9
62d27d3
4332b6e
0b5b2aa
825bb98
d2e4347
7ddac07
09fd530
e12e2f5
3e3e5cc
1e9e387
ef520ba
747a630
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 |
|---|---|---|
|
|
@@ -387,7 +387,8 @@ tasks: | |
| ("3.9", "cp39", "cp39"), | ||
| ("3.10", "cp310", "cp310"), | ||
| ("3.11", "cp311", "cp311"), | ||
| ("3.12", "cp312", "cp312")] %} | ||
| ("3.12", "cp312", "cp312"), | ||
| ("3.13", "cp313", "cp313")] %} | ||
|
|
||
| {############################## Wheel Linux ##################################} | ||
|
|
||
|
|
@@ -1191,7 +1192,7 @@ tasks: | |
| UBUNTU: 22.04 | ||
| image: ubuntu-cpp-emscripten | ||
|
|
||
| {% for python_version in ["3.8", "3.9", "3.10", "3.11", "3.12"] %} | ||
| {% for python_version in ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] %} | ||
| test-conda-python-{{ python_version }}: | ||
|
Member
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. I assume a conda build testing 3.13 will not yet work since conda-forge does not yet have Python 3.13. So maybe this change can be left out for now. Also for a free-threaded variant, setting this up would not just work like this because then we need to install python from a custom channel? (https://py-free-threading.github.io/installing_cpython/#conda) But even then I am not sure if all other dependencies would then already have packages compatible with that python version?
Contributor
Author
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. That's true. I removed 3.13 for now. Maybe it can be added later, when |
||
| ci: github | ||
| template: docker-tests/github.linux.yml | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.