In my requirements.txt I'd like to specify that I need greater than or equal to a specific version of a Python dependency. I could do this if I wanted the dependency Python package installed from PyPI:
ExamplePackage>=0.2
But what if I want to specify the GitHub URL to install from? I know you can specify an exact tag:
-e git://github.com/my-username/[email protected]
But can I specify a >= instead?
Not possible, unfortunately.
See the list of supported git specifications in the official docs, none of which allow for >=
Seems like it would be useful functionality for somebody to add, though
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With