From 77065fc529e531725aac4b9368b4c3aefc1f67b4 Mon Sep 17 00:00:00 2001 From: Philipp Schlegel Date: Tue, 14 May 2024 09:26:56 +0100 Subject: [PATCH] Drop support for Python <3.8 --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5a68946..d8a0bba 100644 --- a/setup.py +++ b/setup.py @@ -45,14 +45,13 @@ 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', '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', ], install_requires=requirements, - python_requires='>=3.6', + python_requires='>=3.8', extras_require={'extras': ['scikit-learn==0.20.3']}, include_package_data=True, zip_safe=False