nedrysoft/regex101

Intial deploy.py condition fails on certain Python versions

j0hnnyrico opened this issue · 1 comments

Hello there
For example I run Python 3.11.8 which when platform.python_version_tuple()<('3','6','0'): is run it obviously fails with requires python >= 3.6

The comparison should be changed.

Thank you.

changing it to platform.python_version_tuple()<('03','06','00') worked for me on python 3.10.12