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
pip install 'my-pkg > 0.2.dev136461' doesn't find any matching packages:
Looking in indexes: https://pypi.org/simple, https://example.com/repository/example/simple, https://example.com/repository/example-dev/simple
ERROR: Could not find a version that satisfies the requirement my-pkg>0.2.dev136461
ERROR: No matching distribution found for my-pkg>0.2.dev136461
pip install 'my-pkg >= 0.2.dev136461' (using ">=" instead of ">") finds and installs the package my_pkg-0.2.dev136483, which is strictly greater than the 0.2.dev136461 requested originally, so it should have been found by the original command.
Expected behavior
A package matching the criteria should have been found and installed.
How to Reproduce
I don't know if this bug is limited to dev versions of packages, or to private repositories; my steps to reproduce are:
Have a "dev version" of a package published in a private repo
Try to install as shown above
Package is not found.
Output
Shown above.
Code of Conduct
I agree to follow the PSF Code of Conduct
The text was updated successfully, but these errors were encountered:
pip version
21.0.1 and 20.1.1 tested
Python version
3.7.3
OS
Mac OS X 10.15.7
Additional information
No response
Description
pip install 'my-pkg > 0.2.dev136461'
doesn't find any matching packages:pip install 'my-pkg >= 0.2.dev136461'
(using ">=" instead of ">") finds and installs the packagemy_pkg-0.2.dev136483
, which is strictly greater than the0.2.dev136461
requested originally, so it should have been found by the original command.Expected behavior
A package matching the criteria should have been found and installed.
How to Reproduce
I don't know if this bug is limited to dev versions of packages, or to private repositories; my steps to reproduce are:
Output
Shown above.
Code of Conduct
The text was updated successfully, but these errors were encountered: