-
-
Notifications
You must be signed in to change notification settings - Fork 40
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
All packages are up-to-date. #29
Comments
I have the same issue:
I cannot figure out what causes "Update interrupted". It worked fine on another project. |
Okay, I figured it out. The reason is that in the requirements, none of the dependencies were frozen ( A better error message would be helpful in this case. Better even could be to bump the min version (if desired). |
I'm seeing this problem, and my requirements.txt uses == I did interrupt an earlier running of this in the middle, and it hasn't run correctly since. I see
my requirements.txt file is
|
Never mind. I was using windows powershell to create the requirements.txt file, which apparently creates utf-16 that pip-upgrader won't process. Sorry for the noise, but I thought I'd follow up in case someone else runs into this. |
Not sure what i'm doing wrong here but pip-upgrade keeps failing and saying that all packages are up to date. Below is an example when i was trying to upgrade scikit-learn. You can see that pip-upgrade gives up but then I immediately run
pip install -U scikit-learn
and it upgrades.Any ideas?
Thanks for building such a great and necessary package!
`(.venv) Pauls-Mac-mini:my_dir Paul$ pip-upgrade requirements.txt
Found valid requirements file(s):
requirements.txt
All packages are up-to-date.
Upgrade interrupted.
(.venv) Pauls-Mac-mini:my_dir Paul$ pip install -U scikit-learn
Collecting scikit-learn
Using cached scikit_learn-0.22.2.post1-cp37-cp37m-macosx_10_9_x86_64.whl (7.1 MB)
Requirement already satisfied, skipping upgrade: scipy>=0.17.0 in ./.venv/lib/python3.7/site-packages (from scikit-learn) (1.4.1)
Requirement already satisfied, skipping upgrade: numpy>=1.11.0 in ./.venv/lib/python3.7/site-packages (from scikit-learn) (1.18.1)
Requirement already satisfied, skipping upgrade: joblib>=0.11 in ./.venv/lib/python3.7/site-packages (from scikit-learn) (0.14.1)
Installing collected packages: scikit-learn
Attempting uninstall: scikit-learn
Found existing installation: scikit-learn 0.21.3
Uninstalling scikit-learn-0.21.3:
Successfully uninstalled scikit-learn-0.21.3
Successfully installed scikit-learn-0.22.2.post1`
The text was updated successfully, but these errors were encountered: