From 48468acb99e1d4b4e2ac9ef5eb1424aaf641bba4 Mon Sep 17 00:00:00 2001 From: Nicolas Tessore Date: Tue, 16 Apr 2024 00:07:10 +0100 Subject: [PATCH] gh-44: require Python>=3.7 (#45) Bump the minimum Python version to 3.7. Closes: #44 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3b466a2..0688c9b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ classifiers = [ "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", ] -requires-python = ">=3.6" +requires-python = ">=3.7" dependencies = [ "numpy", ]