We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When installing local package, the logical check on this line does not work correctly when package name has -i in it.
-i
pipenv/pipenv/core.py
Line 1873 in 29eb73a
Pipenv tries installing a package called -e
-e
Suppose you have a local python package named like marathon-python-internal
marathon-python-internal
pipenv install -e ../packages/marathon-python-lnternal/
This results in the code flow falling inside the IF condition vs some other package name that doesn't have the string -i in them eg
pipenv install -e ../packages/funniest/
pipenv, version 2018.7.1
The text was updated successfully, but these errors were encountered:
hmmm yes, that is a problem.
Sorry, something went wrong.
pipenv install -i
--pypi_mirror
Some points I want to know:
In pipenv, it will include source in Pipfile and https://foo.bar
It will only include source in Pipfile and https://bar
It should include source in Pipfile, and https://foo, and https://bar
Is that right @techalchemy ?
Successfully merging a pull request may close this issue.
Issue description
When installing local package, the logical check on this line does not work correctly when package name has
-i
in it.pipenv/pipenv/core.py
Line 1873 in 29eb73a
Actual result
Pipenv tries installing a package called
-e
Steps to replicate
Suppose you have a local python package named like
marathon-python-internal
This results in the code flow falling inside the IF condition vs some other package name that doesn't have the string
-i
in them egThe text was updated successfully, but these errors were encountered: