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
{{ message }}
This repository has been archived by the owner on Mar 30, 2023. It is now read-only.
twint raises an error that "TWINT requires Python version 3.6+" when you try to run it in Python 3.10 because the comparison casts the version as a float.
It would be better to take the version number as a tuple and compare it works with semantic versioning.
>>> (3, 10) > (3, 6)
True
The text was updated successfully, but these errors were encountered:
twint/twint/cli.py
Line 335 in e7c8a0c
twint raises an error that "TWINT requires Python version 3.6+" when you try to run it in Python 3.10 because the comparison casts the version as a float.
It would be better to take the version number as a tuple and compare it works with semantic versioning.
The text was updated successfully, but these errors were encountered: