From 660b52331287a361e3c96f2e39fa0c5f60bc2aa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20K=C5=82oczko?= Date: Thu, 20 Jun 2024 15:55:19 +0000 Subject: [PATCH] update minimum supported python version to 3.8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomasz Kłoczko --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index edbaa4f2..f9301b13 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ 'pytz', # install requirements depending on python version # see https://www.python.org/dev/peps/pep-0508/#environment-markers - 'backports.zoneinfo; python_version == "3.7" or python_version == "3.8"', + 'backports.zoneinfo; python_version <= "3.8"', 'tzdata' ] @@ -39,7 +39,6 @@ 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', @@ -57,7 +56,7 @@ package_dir={'': 'src'}, include_package_data=True, zip_safe=False, - python_requires=">=3.7", + python_requires=">=3.8", install_requires=install_requires, entry_points = {'console_scripts': ['icalendar = icalendar.cli:main']}, extras_require={