Skip to content

Commit 2332cb2

Browse files
fix: update Python version requirement to 3.10
1 parent 844980f commit 2332cb2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def get_version(filename):
1919
return version
2020

2121

22-
if sys.version_info < (3, 6):
23-
msg = 'duckietown-shell works with Python 3.6 and later.\nDetected %s.' % str(sys.version)
22+
if sys.version_info < (3, 10):
23+
msg = 'duckietown-shell works with Python 3.10 and later.\nDetected %s.' % str(sys.version)
2424
sys.exit(msg)
2525

2626
distro = 'daffy'
@@ -81,7 +81,7 @@ def get_version(filename):
8181
},
8282
packages=find_packages(where="lib", exclude=["dt_shell_tests"]),
8383
# we want the python 2 version to download it, and then exit with an error
84-
# python_requires='>=3.6',
84+
# python_requires='>=3.10',
8585

8686
tests_require=[],
8787
install_requires=install_requires,

0 commit comments

Comments
 (0)