From 4ea608e626051718fb603aa8ee29340ff1cb0c8e Mon Sep 17 00:00:00 2001 From: Toni Neubert Date: Sat, 15 Apr 2023 13:08:25 +0200 Subject: [PATCH] Python 3.7 or later is required (#55) --- README.md | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9d855be..956af4f 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ At the end there will be one single file with all your header and sources joined pip install --user quom ``` -Only **Python 3.6+** is supported. +Requires Python 3.7 or later. ## How to use it diff --git a/setup.cfg b/setup.cfg index 1b68e58..1853a2e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -46,7 +46,7 @@ setup_requires = setuptools_scm # Require a min/specific Python version (comma-separated conditions) -python_requires = >=3.6 +python_requires = >=3.7 # Add here dependencies of your project (line-separated) # TODO: Remove conditional dependencies according to `python_requires` above