-
Notifications
You must be signed in to change notification settings - Fork 28
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
Support "<" in package specifiers #115
Comments
The reason is because that functionality simply doesn't exist. What we'd need is to write some code that downloads all possible versions of In a sense, it already supports
because if you omit the operator (or the version) it knows to pick the latest and greatest which is a lot easier to compute. If you feel like you often need to add a version with an operator other than Also, doing that kind of version operation arithmatic "should be easy" if done using |
I thought that it should somehow be done through the imported |
Perhaps because I've been lazy but there's been a couple of times where I know I don't want the latest version. For example, when I upgrade or add a lib in a Python2 project. Then I usually, for example, open the CHANGELOG.rst and read it for which version is right for my project. It might, for example, say that "As of version 2.0.0 it only works for Python3". So I figured out I need version |
For some reason there is an assertion against using
<
is package specifier.The text was updated successfully, but these errors were encountered: