Replies: 6 comments 13 replies
-
Your build script still has v2.11.1 pinned by the looks of it, so I'm guessing the change will be in the code you're building. I can't seem to access that, is it accessible somewhere? |
Beta Was this translation helpful? Give feedback.
-
We're not building from exclusively the open-source editions of the product, so I don't have all the sources in an easily accessible place, but here's a link to what the (The github action downloads and unpacks that before it begins.) I don't think we made any changes to the configuration, but I've been wrong before. |
Beta Was this translation helpful? Give feedback.
-
That's an editable install artifact, I'm going to bet. Some backends use generated pth files. Is there an editable install happening somewhere, like for coverage or something? What build backend are you using? |
Beta Was this translation helpful? Give feedback.
-
I did a little sleuthing on that filename and it looks like it's a feature of delvewheel... https://github.com/adang1345/delvewheel/blob/master/delvewheel/_wheel_repair.py#L816-L835 |
Beta Was this translation helpful? Give feedback.
-
I had a brief hope that maybe using a different version of GraalVM (22.3.1 instead of 22.3.0) was relevant, but no :-( I don't see where I specify an particular version of delvewheel, is that under my control? |
Beta Was this translation helpful? Give feedback.
-
Right. Going back to delvewheel 1.2.0 fixes the problem in as much as there are no Thank you, everyone, for your help! I really appreciate it! |
Beta Was this translation helpful? Give feedback.
-
In January, I used a
cibuildwheel
task on GitHub to build wheels for an external C library. A few days ago, I used it again to build wheels for an updated version of the library.The version built a few days ago includes an additional file in the wheel:
That file isn't present in the "12.0.0" version of the wheel and it appears to cause problems with virtual environments on Windows:
I can't work out if this is caused by something that changed in the configuration of our build, something that changed in
cibuildwheel
or something else.Hints, suggestions, workarounds, etc. most humbly solicited.
Beta Was this translation helpful? Give feedback.
All reactions