From fe384db60f0e3329ae844a40c5bcdf5e286bbbc5 Mon Sep 17 00:00:00 2001 From: Remi Delmas Date: Wed, 15 Nov 2023 12:01:22 -0500 Subject: [PATCH] Set minimum python version to 3.7 Required to satisfy the reqs of voluptuous 0.14.0 which now uses type annotations, a python 3.7+ feature. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 5b1abdf..90344bc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,7 +24,7 @@ install_requires = jinja2 setuptools voluptuous -python_requires = >=3.6 +python_requires = >=3.7 [options.packages.find] where = src