Skip to content
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

Investigate why cibuildwheel utilized version is misaligned from pinned/installed version #34751

Open
scbedd opened this issue Mar 13, 2024 · 0 comments

Comments

@scbedd
Copy link
Member

scbedd commented Mar 13, 2024

This was identified due to the build beginning to crash on 3/11. These test failures were not caused by any code merge, but instead a release of cibuildwheel.

image

We can tell that the version of cibuildwheel changed by comparing last known succeeding vs failed builds.

Before
image

After
image

The cause of the error is that cibuildwheel no longer assumes that wheel is NECESSARY to build your package. We can simply address it by adding:

[build-system]
requires = ["setuptools", "wheel", "cibuildwheel"]

However. That's just addressing the problem. The real question is why this occurred.

In this experiment build, we forced a pip freeze from the same python executable invoking cibuildwheel, and the freeze version is reporting 2.16.5, but the running version is reporting 2.17.0.

THIS is the source of the mystery. Why are we getting cibuildwheel==2.17.0 when everything we're seeing during install is 2.16.6?

Code:
image
In Build:
image

This issue tracks understanding this question.

CC @jalauzon-msft

@github-actions github-actions bot added the needs-triage This is a new issue that needs to be triaged to the appropriate team. label Mar 13, 2024
@xiangyan99 xiangyan99 removed the needs-triage This is a new issue that needs to be triaged to the appropriate team. label Mar 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants