-
-
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 update --dry-run
bug
#1228
Comments
Can confirm. Locking works fine, but updating does not. |
Just gave this a try and couldn't reproduce. > pip list --format=legacy| grep notebook
notebook (5.0.0)
> pipenv update --dry-run
Courtesy Notice: Pipenv found itself running within a virtual environment, so it will automatically use that environment, instead of creating its own for any project.
Checking dependencies…
Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
You can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation.
Could not find a version that matches entrypoints>=0.2.2
Tried: (no version found at all)
Please check your version specifier and version number. See PEP440 for more information.
notebook==5.4.0 is available (5.0.0 installed)! |
I think I am hitting a very similar issue:
(this is on ubuntu 16.04) |
@asherf you have a dependency resolution issue. If you install pipenv with python 2, it will never be able to resolve python 3 dependencies properly (currently). Your issue is not related to this one, but is related to #857. For now, please run: $ pip uninstall pipenv
$ pip3 install pipenv Or install pipenv with the |
Maybe related to #1073
pipenv update --dry-run
is not working.Describe your environment
OS Type
macOS 10.13
Python version:
$ python -V
Python 3.6.3
Pipenv version:
$ pipenv --version
pipenv, version 9.0.1
Expected result
Report which packages to be updated.
Actual result
Steps to replicate
The text was updated successfully, but these errors were encountered: