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
Hi, I would like to point out an issue regarding the versioning check at start of deploy.py.
I'm currently on python 3.12.4 and the tuple comparison is not comparing integers but strings.
You can reproduce the bug with the python console commands below:
Python 3.12.4 | packaged by Anaconda, Inc. | (main, Jun 18 2024, 15:12:24) [GCC 11.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> ('3', '9', '4') < ('3', '2', '0')
False
>>> ('3', '10', '4') < ('3', '2', '0')
True
>>> '10' < '2'
True
The text was updated successfully, but these errors were encountered:
Hi, I would like to point out an issue regarding the versioning check at start of deploy.py.
I'm currently on python 3.12.4 and the tuple comparison is not comparing integers but strings.
You can reproduce the bug with the python console commands below:
The text was updated successfully, but these errors were encountered: