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
If this were a Python package, it would actually be correct not to normalize these, due to pre-release handling and other details of PEP 440. But we generally want to ignore that stuff with requires-python.
E.g.,
python_version <= '3.9' or python_version > '3.9'
doesn't simplify out, nor doespython_version < '3.9' or python_version >= '3.9'
.Related to #4714.
The text was updated successfully, but these errors were encountered: