You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using pip install pkg==, pip downloads and installs version 0.0 if it's in the index. I use importlib-metadata as an example because it has a 0.0 release in PyPI:
Description
When using
pip install pkg==
, pip downloads and installs version 0.0 if it's in the index. I use importlib-metadata as an example because it has a 0.0 release in PyPI:https://pypi.org/project/importlib-metadata/0.0/#files
Expected behavior
Something like:
pip version
23.1.2
Python version
3.11
OS
macOS and Linux
How to Reproduce
pip install importlib-metadata==
Output
Workaround
other way to get list of versions without possibly getting a 0.0 release:
pip install importlib-metadata==bogus
Code of Conduct
The text was updated successfully, but these errors were encountered: