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
The above regular expression assumes the minor version number can have only a single digit. Therefore the result will be incorrect for Python versions >= 3.10.
We probably want to change it to
ifnotre.match(r"^\d\.\d*\d$", version)
The text was updated successfully, but these errors were encountered:
The issue seems to stem from this piece of code.
The above regular expression assumes the minor version number can have only a single digit. Therefore the result will be incorrect for Python versions >= 3.10.
We probably want to change it to
The text was updated successfully, but these errors were encountered: