Fix Nightly PyPi Artifact Wheels Build#2678
Merged
kevinjqliu merged 2 commits intoapache:mainfrom Nov 3, 2025
Merged
Conversation
kevinjqliu
reviewed
Nov 3, 2025
Contributor
kevinjqliu
left a comment
There was a problem hiding this comment.
thanks for catching this! looks like the nightly build has been failing for a while.
This fix looks good to me. I think we also need to apply the same change to svn-build-artifacts.yml
kevinjqliu
reviewed
Nov 3, 2025
Contributor
|
i tested it out on my fork, it works! |
Contributor
|
trigger the nightly build, https://github.com/apache/iceberg-python/actions/runs/19039807174 Thanks for the fix @geruh |
kevinjqliu
added a commit
that referenced
this pull request
Nov 17, 2025
<!--
Thanks for opening a pull request!
-->
<!-- In the case this PR will resolve an issue, please replace
${GITHUB_ISSUE_ID} below with the actual Github issue id. -->
<!-- Closes #${GITHUB_ISSUE_ID} -->
# Rationale for this change
nightly pypi silently fails (#2678)
This PR adds notification when github workflow fails
Sent to `ci-jobs@iceberg.apache.org`
## Are these changes tested?
## Are there any user-facing changes?
<!-- In the case of user-facing changes, please add the changelog label.
-->
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rationale for this change
Nightly build has been failing for some time since dropping support python 3.9 support. That PR included a change that dropped the upper bound of the python version.
That made cibuildwheel try Python 3.14 and sometimes the free-threaded *t builds. Those are part of the PEP 703 effort to allow Python without the GIL. Therefore, the avro related code would throw a message breaking the build and I don't think this has been evaluated yet. So this change adds
CIBW_SKIP: "cp3*t-*"to skip free-threaded ABIs for now, and we can continue building on new regular CPythons while avoiding PEP 703 no-GIL builds.Bulld failures:
Are these changes tested?
Yes
Are there any user-facing changes?
No