-
Notifications
You must be signed in to change notification settings - Fork 3k
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
new 'wheel' dependencies impact on pip freeze #8763
Comments
This issue went away with wheel 0.35.1 which now vendors |
Note that vendoring is only an interim solution until we can get rid of the unnecessary dependencies. One plan is to separate the "tags" part of packaging into its own library. If this happens, wheel will add an install dependency on that. |
Related to #4256 |
This issue is probably not worth keeping around anymore as pip/src/pip/_internal/commands/freeze.py Lines 12 to 22 in 4d09e3c
|
Yes; I don’t think this is relevant anymore since setuptools and wheel are no longer “built-in” (in quotes). |
pip freeze
excludespip
,setuptools
, andwheel
by default, unless the--all
option is passed.Now that
wheel
depends onpackaging
which in turn depends onpyparsing
andsix
, new, possibly unexpected lines are emitted bypip freeze
.I'm not sure yet if it is a problem in practice.
The text was updated successfully, but these errors were encountered: