scylladb / scylla-cqlsh

A fork of the cqlsh code
Apache License 2.0
16 stars 32 forks source link

setup: do not support python2 and remove six #28

Closed tchaikov closed 1 year ago

tchaikov commented 1 year ago

we have

if sys.version_info < (3, 6):
    sys.exit("\ncqlsh requires Python 3.6+\n")

in cqlsh.py, so practically, we only support Python 3.6 and up. so drop the support of Python < 3.6 in the metadata. also, "six" package is removed from setup.py and requirements.txt.

fruch commented 1 year ago

@tchaikov we have one more reference of six, to dynamically load it for a zip file, but I think we need it for python-driver so we should leave it in place