We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 18128d7 + 7f95429 commit 8dabf56Copy full SHA for 8dabf56
setup.py
@@ -20,9 +20,9 @@ def get_version(filename):
20
raise ValueError(filename)
21
return version
22
23
-
24
-if sys.version_info < (3, 10):
25
- msg = 'duckietown-shell works with Python 3.10 and later.\nDetected %s.' % str(sys.version)
+version_info = sys.version_info
+if version_info < (3, 10) or version_info >= (3, 13):
+ msg = 'duckietown-shell works with Python 3.10.x-3.12.x.\nDetected %s.' % sys.version
26
sys.exit(msg)
27
28
distro = 'daffy'
0 commit comments