From d6cb9fbdad1ffc182d80956a4eb11e4bef366aac Mon Sep 17 00:00:00 2001 From: SylviaDu99 Date: Tue, 1 Oct 2024 12:29:03 -0700 Subject: [PATCH] chore: removed python 3.9 support in setup.py fixes: issue #244 --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8954b634..4a8c2e8d 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,6 @@ "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: POSIX", "Programming Language :: Python", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", @@ -73,7 +72,7 @@ "policyengine-core=policyengine_core.scripts.policyengine_command:main", ], }, - python_requires=">=3.9", + python_requires=">=3.10", extras_require={ "dev": dev_requirements, },