-
-
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
Pipenv doesn't resolve local wheel deps. #1683
Comments
can you try again with latest? |
cannot reproduce with latest |
Why you close it so sudden? I wouldn't post it as a problem if I'm having the problem. I'll gather the info and show you. |
make sure you're using the latest version! |
Sorry I might have reported the step to reproduct wrong. What happened is that if it's a fresh new environment and I do |
ah, I see. I'll see if we can improve this, but I make no promises. |
@chngtrn if you install the |
@techalchemy pipenv lock doesn't capture the deps at all. this is fine if we document it. but, it's a caveat, currently. |
OK. I'll deal with it then. Thanks for everything and this great project. |
When installing a .whl package that we built using
pipenv install package.whl
it doesn't install the dependencies in package.whl.These are the required packages in package.whl setup.py file:
install_requires=[ 'requests==2.18.4', 'PySocks==1.6.7', 'nose==1.3.7', 'redis==2.10.6', 'Sphinx==1.6.4', 'twine==1.9.1', ]
Step to replicate:
pipenv install /path/to/package.whl
# Doesn't install dependenciespip install /path/to/package.whl
# Does install package.whl dependenciesThe text was updated successfully, but these errors were encountered: