-
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
Add --global-option to egg_info command too #4383
Comments
Note: in this case I don't think the parameter should be passed to the dependencies' egg_info. I can see which this can be important for install options (prefix?), for example, but not global/build options (they would likely break dependencies). |
Just a +1 for this feature request! |
I'll mark this as awaiting PR and assume we'll discuss any backwards-compatibility concerns on the PR itself. |
One problem with a naive implementation of this would be use cases like #6398, which pass additional commands in |
Description:
I maintain a package that has many dependencies, which are also conditional to a specific argument to setup.py.
If I pass this argument to pip, like this:
Then in the very first few lines I see the output:
And the wrong list of dependencies is fetched (ie, as if I did not pass the argument at all).
If I run in the project directory the following command:
Then the correct list of dependencies is added.
Can the specified global options be added to it, like they are for build and install?
The text was updated successfully, but these errors were encountered: