From c49a3e6e7f3c8f16bc224f31d22f0f6d901390a1 Mon Sep 17 00:00:00 2001 From: Jan Vesely Date: Thu, 17 Oct 2024 11:53:59 -0400 Subject: [PATCH] setup: Drop support for Python3.7 Signed-off-by: Jan Vesely --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f382ef5477e..3605637c945 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,6 @@ def get_requirements(require_name=None): # Supported Python Versions 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', @@ -66,7 +65,7 @@ def get_requirements(require_name=None): ], # Require recent python - python_requires=">=3.7", + python_requires=">=3.8", # What does your project relate to? keywords='cognitive modeling',