-
Notifications
You must be signed in to change notification settings - Fork 518
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
Pip wheel for pyyaml contains pyc files #527
Comments
Thanks for the heads-up; that's definitely an oversight that we'll correct and get a finished artifact test in place for. |
This one took some gnarly debugging and a lot longer to figure out than it should've. Initially it seemed like a simple addition of a The ultimate solution here is probably to just get rid of as much of the custom command behavior entirely ( Thanks for reporting this. |
This was fixed in 6.0 |
The pip wheel for pyyaml 5.4.1 contains .pyc files. An example is
yaml/__pycache__/resolver.cpython-39.pyc
. No other wheel pulled in for my project contains .pyc files.These files are not supposed to be included in the wheel. Pip will compile pyc files for you during installation if you want them. I only noticed this because it is causing problems with Bazel's rules_python and I had to temporarily downgrade to an older version of pyyaml.
Thank you!
The text was updated successfully, but these errors were encountered: