adelapena commented on code in PR #3013:
URL: https://github.com/apache/cassandra/pull/3013#discussion_r1453727895


##########
bin/cqlsh.py:
##########
@@ -21,8 +21,8 @@
 import sys
 from glob import glob
 
-if sys.version_info < (3, 7):
-    sys.exit("\ncqlsh requires Python 3.7+\n")
+if sys.version_info < (3, 8) or sys.version_info >= (3, 12):

Review Comment:
   12. The max supported version is Python 3.11.x, so we use `>= (3, 12)` to 
accept minors.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to