From e6119cdc1b2777abf5a65f8c7e8e1430c19f65d2 Mon Sep 17 00:00:00 2001 From: Scott Lowe Date: Mon, 31 Jul 2023 16:36:13 -0400 Subject: [PATCH] Increase minimum python requirement to 3.7 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7f250e5..a2bd198 100755 --- a/setup.py +++ b/setup.py @@ -144,7 +144,7 @@ def run(self): package_dir={meta["name"]: os.path.join(".", meta["path"])}, # If any package contains *.txt or *.rst files, include them: # package_data={"": ["*.txt", "*.rst"],} - python_requires=">=3.6", + python_requires=">=3.7", install_requires=install_requires, extras_require=extras_require, # Metadata to display on PyPI @@ -161,11 +161,11 @@ def run(self): "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], # Could also include keywords, download_url, project_urls, etc. # Custom commands