-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
CI: Add Windows wheels for the free-threaded build #60146
Conversation
lysnikolaou
commented
Oct 30, 2024
- Related to ENH: Python 3.13 free-threading support #59057
- All code checks passed.
before-build = "pip install delvewheel && bash {package}/scripts/cibw_before_build_windows.sh" | ||
before-test = "bash {package}/scripts/cibw_before_test_windows.sh" | ||
test-command = """ | ||
set PANDAS_CI='1' && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could the PANDAS_CI
be set in the before-test
so that this section can re-use the test-command
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could do that, yes, but all cibuildwheel
custom configs include a different test-command
. The Windows one has a slight difference as well. So I'm not sure if it's really worth it.
Can we merge this? Is there anything else I'd need to do before we can do it? |
Thanks @lysnikolaou |