From b269ab2e2608873da739205d340e828bb7f71705 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Thu, 28 Apr 2022 16:41:10 +0300 Subject: [PATCH] Require Python 3.7 or later. The version of Setuptools that has pyproject.toml/ PEP 621 support requires Python 3.7 or later (supported version of Python). --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index dbbef07..c157ff3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ keywords = [ license = {file = "LICENSE.txt"} name = "sampleproject" readme = "README.rst" +requires-python = ">=3.7" [project.scripts] sampleproject = "sampleproject:main" -- GitLab