-
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
pip install ignores --global-option when running egg_info #6560
Labels
auto-locked
Outdated issues that have been locked by automation
resolution: duplicate
Duplicate of an existing issue/PR
Comments
triage-new-issues
bot
added
the
S: needs triage
Issues/PRs that need to be triaged
label
May 31, 2019
ftesser
changed the title
pip install ignores --global-option in running egg_info
pip install ignores --global-option when running egg_info
May 31, 2019
History: I think this has to do with any flag that is meant as a bool, because this issue has been talked about before. #6379 #5518 #5576 Command:
Version Info
Command Output
|
triage-new-issues
bot
removed
the
S: needs triage
Issues/PRs that need to be triaged
label
Oct 17, 2019
lock
bot
added
the
auto-locked
Outdated issues that have been locked by automation
label
Nov 16, 2019
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
auto-locked
Outdated issues that have been locked by automation
resolution: duplicate
Duplicate of an existing issue/PR
Environment
Description
From pip install documentation:
--global-option
: Extra global options to be supplied to the setup.py call before the install command.--global-option
is supplied to theinstall
orbdist_wheel
commands but not to theegg_info
command.Expected behavior
Before running
setup.py install
pip install runsetup.py egg_info
, I expected that--global-option
parameter is supplied also to this command.How to Reproduce
test_folder
create a dummysetup.py
like this one, with a line likeprint(sys.argv)
to check the supplied arguments:--global-option="--verbose"
:pip3 install -v --global-option="--verbose" ./folder/ --user or
or if installing from a VCS:
pip3 install -v --global-option="--verbose" git+https://gitlab.com/fabio.tesser/pip_install_global_option#egg=pip_install_global_option --user
Supplied arguments
string:egg_info
command was run, the--verbose
option is not present in the list of the arguments;install
command was run, the--verbose
option is correctly supplied.Output
The text was updated successfully, but these errors were encountered: