From fbdd6ea358fbec430e833beb1017cc2f062a9958 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Tue, 8 Aug 2023 11:23:17 -0300 Subject: [PATCH] Updated minimum Python version to 3.7 dataclasses and subprocess.run(capture_output) needs 3.7 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6af83934..2b406f0b 100755 --- a/setup.py +++ b/setup.py @@ -34,5 +34,5 @@ setup(name='kibot', ], platforms='POSIX', license='GPL-3.0', - python_requires='>=3.6', + python_requires='>=3.7', )