We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 844980f commit 2332cb2Copy full SHA for 2332cb2
setup.py
@@ -19,8 +19,8 @@ def get_version(filename):
19
return version
20
21
22
-if sys.version_info < (3, 6):
23
- msg = 'duckietown-shell works with Python 3.6 and later.\nDetected %s.' % str(sys.version)
+if sys.version_info < (3, 10):
+ msg = 'duckietown-shell works with Python 3.10 and later.\nDetected %s.' % str(sys.version)
24
sys.exit(msg)
25
26
distro = 'daffy'
@@ -81,7 +81,7 @@ def get_version(filename):
81
},
82
packages=find_packages(where="lib", exclude=["dt_shell_tests"]),
83
# we want the python 2 version to download it, and then exit with an error
84
- # python_requires='>=3.6',
+ # python_requires='>=3.10',
85
86
tests_require=[],
87
install_requires=install_requires,
0 commit comments