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.
@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
we have
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.