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
>>> range = PypiVersionRange.from_native("<1.4.11")
>>> version = PypiVersion("1.1")
>>> version in range
True
>>> range = PypiVersionRange.from_native(">=1.1.0,<1.4.11")
>>> version in range
False
>>> range
PypiVersionRange(constraints=(VersionConstraint(comparator='>=', version=PypiVersion(string='1.1.0')), VersionConstraint(comparator='<', version=PypiVersion(string='1.4.11'))))
>>> range = PypiVersionRange.from_native(">=1.1,<1.4.11")
>>> version in range
True
The text was updated successfully, but these errors were encountered:
>>> range = PypiVersionRange.from_native(">=1.1.0,<1.4.11")
>>> version = PypiVersion("1.1")
>>> version in range
True
>>> range
PypiVersionRange(constraints=(VersionConstraint(comparator='>=', version=PypiVersion(string='1.1.0')), VersionConstraint(comparator='<', version=PypiVersion(string='1.4.11'))))
The text was updated successfully, but these errors were encountered: