-
Notifications
You must be signed in to change notification settings - Fork 4k
GH-49138: [Packaging][Python] Remove nightly cython install from manylinux wheel dockerfile #49139
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
base: main
Are you sure you want to change the base?
GH-49138: [Packaging][Python] Remove nightly cython install from manylinux wheel dockerfile #49139
Conversation
|
|
|
@github-actions crossbow submit wheel-manylinux-2-28-cp313-cp313t-amd64 |
|
Revision: 11304e1 Submitted crossbow builds: ursacomputing/crossbow @ actions-203a255c02
|
raulcd
left a comment
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.
Should we do the same for macOS wheel builds?
arrow/ci/scripts/python_wheel_macos_build.sh
Lines 49 to 53 in d2315fe
| # Remove once there are released Cython wheels for 3.13 free-threaded available | |
| FREE_THREADED_BUILD="$(python -c"import sysconfig; print(bool(sysconfig.get_config_var('Py_GIL_DISABLED')))")" | |
| if [[ $FREE_THREADED_BUILD == "True" ]]; then | |
| pip install cython --pre --extra-index-url "https://pypi.anaconda.org/scientific-python-nightly-wheels/simple" --prefer-binary | |
| fi |
|
@github-actions crossbow submit wheel-macos-monterey-cp313-cp313t-amd64 |
|
Revision: 493fbac Submitted crossbow builds: ursacomputing/crossbow @ actions-892a460c91
|
raulcd
left a comment
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.
Thanks @AlenkaF
Successfully installed cython-3.2.4 on both jobs!
|
@github-actions crossbow submit wheel-* |
|
Revision: 493fbac Submitted crossbow builds: ursacomputing/crossbow @ actions-b38424f180 |
Rationale for this change
We use nightlies version of Cython for free-threaded PyArrow wheels and they are currently failing, see #49138
What changes are included in this PR?
Nightly Cython install is removed and Cython is installed via requirements file.
Are these changes tested?
Tes.
Are there any user-facing changes?
No.