-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Extra packages not being installed in empty virtualenv #3140
Comments
See #3026. I guess we have to wait for the next release to get that fix |
Yes sorry for the delay, just want to make sure nothing else is broken as a result of the significant amount of clean up we had to do to resolve the other issues that came up |
Don‘t worry. I‘m looking forward to the new release. Keep up the good work on this awesome tool. |
An unpretty workaround worked for me in a meanwhile. |
The workaround is really unpretty, since it needs to be reapplied every time Pipfile.lock is updated :( |
Note that we have PRs up but builds have been failing, and obviously that is going to hold up release -- believe me when I say it is worth it. I know it has been frustrating, but I am doing my best here to make sure that we get something high quality out. Trust me, I have a vested interest. My s/o is going to murder me if I spend more time on this than I need to |
Dan, |
This has been fixed in Thanks a bunch and keep up the good work 🍰 |
Issue description
Running
pipenv install
does not install extra package in an empty virtualenv.Expected result
Running
pipenv install
with thePipfile
andPipfile.lock
(see below) does not install the extra packagecryptography
:Actual result
The extra
cryptography
is not installed.Steps to replicate
Create an empty virtualenv, create the files
Pipfile
andPipfile.lock
having the contents below, then runpipenv install
.$ pipenv --support
Pipenv version:
'2018.10.13'
Pipenv location:
'/Users/mbaechtold/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv'
Python location:
'/Users/mbaechtold/.local/venvs/pipenv/bin/python'
Python installations found:
3.7.1
:/opt/local/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7m
3.7.1
:/opt/local/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7
3.6.7
:/Users/mbaechtold/.local/share/virtualenvs/pipenv-demo-extra/bin/python3.6
3.6.7
:/opt/local/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6
3.6.7
:/opt/local/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6m
3.5.6
:/opt/local/Library/Frameworks/Python.framework/Versions/3.5/bin/python3.5m
3.5.6
:/opt/local/Library/Frameworks/Python.framework/Versions/3.5/bin/python3.5
3.4.9
:/opt/local/Library/Frameworks/Python.framework/Versions/3.4/bin/python3.4
3.4.9
:/opt/local/Library/Frameworks/Python.framework/Versions/3.4/bin/python3.4m
3.3.7
:/opt/local/Library/Frameworks/Python.framework/Versions/3.3/bin/python3.3
2.7.15
:/opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7
2.7.13
:/opt/local/lib/pypy/bin/pypy
2.7.10
:/usr/bin/python
2.7.10
:/usr/bin/pythonw
2.7.10
:/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7
PEP 508 Information:
System environment variables:
Apple_PubSub_Socket_Render
BB_BASE_DIR
CFLAGS
DISPLAY
GH_BASE_DIR
GL_BASE_DIR
HOME
LANG
LC_ALL
LC_CTYPE
LDFLAGS
LOGNAME
MANPATH
MARKPATH
NVM_BIN
NVM_CD_FLAGS
NVM_DIR
NVM_IOJS_ORG_MIRROR
NVM_NODEJS_ORG_MIRROR
NVM_PATH
OMF_CONFIG
OMF_PATH
PATH
PWD
RBENV_SHELL
SHELL
SHLVL
SSH_AUTH_SOCK
SWIG_FEATURES
TERM
TERM_PROGRAM
TERM_PROGRAM_VERSION
TERM_SESSION_ID
TMPDIR
USER
VIRTUAL_ENV
XPC_FLAGS
XPC_SERVICE_NAME
__CF_USER_TEXT_ENCODING
PYTHONDONTWRITEBYTECODE
PIP_SHIMS_BASE_MODULE
PIP_PYTHON_PATH
Pipenv–specific environment variables:
Debug–specific environment variables:
PATH
:/Applications/Postgres.app/Contents/Versions/latest/bin:/Users/mbaechtold/.rbenv/shims:/Users/mbaechtold/.rbenv/bin:/Users/mbaechtold/.nvm/versions/node/v10.8.0/bin:/Users/mbaechtold/.local/share/virtualenvs/pipenv-demo-extra/bin:/Users/mbaechtold/.local/bin:/opt/local/bin:/opt/local/sbin:/Applications/Postgres.app/Contents/Versions/latest/bin:/Users/mbaechtold/.rbenv/shims:/Users/mbaechtold/.rbenv/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/local/MacGPG2/bin:/Library/TeX/texbin
SHELL
:/opt/local/bin/fish
LANG
:en_US.UTF-8
PWD
:/Users/mbaechtold/Desktop/PipenvDemo
VIRTUAL_ENV
:/Users/mbaechtold/.local/share/virtualenvs/pipenv-demo-extra
Contents of
Pipfile
('/Users/mbaechtold/Desktop/PipenvDemo/Pipfile'):Contents of
Pipfile.lock
('/Users/mbaechtold/Desktop/PipenvDemo/Pipfile.lock'):The text was updated successfully, but these errors were encountered: