Intial deploy.py condition fails on certain Python versions
j0hnnyrico opened this issue · 1 comments
j0hnnyrico commented
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.
jojo2357 commented
changing it to platform.python_version_tuple()<('03','06','00')
worked for me on python 3.10.12