-
Notifications
You must be signed in to change notification settings - Fork 3k
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
pip fails to find new package version even though it is available on PyPI website #8484
Comments
I believe pip has dropped support to eggs for a while now. You’ll need to publish in sdist (tar.gz) or wheel (whl) now. |
@uranusjr what does it mean in practice? I've followed their tutorial to upload the first version and the next version. The first version worked flawlessly. |
What tutorial are you following exactly? The first version you uploaded is a |
@uranusjr well, the official one. Basically I did
I believe could not have used different commands to upload different versions as I've used command from bash history and pypi should validate the packages anyway. |
Hi @DataGreed, probably you made some mistake/typo during the build of 0.2.1—0.2.2 is looking good now. One alternative to setuptools is flit, which you might want to consider to avoid having to handle everything explicitly— This again proves my point that |
About the official guide— |
Environment
Description
I can see the latest version (0.2.1) of my package here – https://pypi.org/project/django-eb-sqs-worker/
But when I try to install it I get the following:
If i don't specify the version it installs 0.1.0:
Upgrading also does not work:
Interestingly, the search results show
0.2.1
as the latest version:Expected behavior
I expect the latest version of the package be available via
pip install
(0.2.1 in this case)What I've tried
https://pypi.python.org/simple/<package-name>
andhttps://pypi.org/simple/<package-name>/ instead.
addresses, but that didn't resolve the issueThe text was updated successfully, but these errors were encountered: