Requirements.txt greater than equal to and then less than?
Yes. The pip manual [doc] has a section on the format of “requirement specifiers“. These are documented in PEP-508 [pep] and PEP-440 [pep]: The comparison operator determines the kind of version clause: ~=: Compatible release clause ==: Version matching clause !=: Version exclusion clause <=, >=: Inclusive ordered comparison clause <, >: Exclusive ordered comparison clause ===: Arbitrary … Read more