-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
wheels prevent extras_require installs from working #3032
Comments
so pip is detecting the extra properly. Not sure why its not evaluating them correctly. |
@kmike what version(s) of setuptools are you using? |
@sigmavirus24 setuptools 18.0.1 installed with virtualenv. |
Additional case when In both cases the problem seems to be with handling of |
Work around pypa/pip#3032: add the same extras with and without dash.
Work around pypa/pip#3032: add the same extras with and without dash.
I wonder if it is related to pypa/setuptools#732. |
Do you still have the issue with pip 9.0.1? |
I think the issue is resolved: both |
Great :) |
This issue is similar to #1885, so I copy-pasted its title :)
In Python 3.4 and 2.7 virtual environments
pip install formasaurus[with-deps]
only installs packages frominstall_requires
, not fromextras_require['with-deps']
.pip install --no-use-wheel formasaurus[with-deps]
tries to install all packages.The example from #1885 works for me (
pip install ipython[test]
installs nose).setup.py file: https://github.com/TeamHG-Memex/Formasaurus/blob/70aa88a50dbc3edf702e31b763ca944ba0995d13/setup.py
I'm using pip 7.1.0.
The text was updated successfully, but these errors were encountered: