From 59c30a4e3352fc38af9ce99fe83596286d45fe66 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Fri, 12 Apr 2024 09:52:24 -0700 Subject: [PATCH] Remove unused `six` from `setup.py` (#37) 'six' was removed in Apache Cassandra 4.1 (CASSANDRA-17417) and from the Python Driver in 3.29 https://github.com/datastax/python-driver/pull/1172, but we forgot to update `setup.py` when we pulled that in. --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 9acab29..9832679 100644 --- a/setup.py +++ b/setup.py @@ -5,6 +5,5 @@ name="cqlsh", install_requires=[ "cassandra-driver", - "six", ], )