I would want to define the install requirement for my pip package. Let's say FooLibrary's version should be >=2 but <3.2.
Currently, I have
[options]
install_requires =
FooLibrary >= 2
How can I add a rule for maximum version of the library together with the minimum version rule?
Separate version requirements with commas.
So for example, in this case, FooLibrary >=2,<3.2
works
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