From 3779bb212378eb897b8ff62ce204c6d189546de4 Mon Sep 17 00:00:00 2001 From: Alejandro Moreo Date: Mon, 20 Feb 2023 09:39:04 +0100 Subject: [PATCH] specifying python >= 3.8 in setup --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5bb39a4..4ab3662 100644 --- a/setup.py +++ b/setup.py @@ -89,8 +89,6 @@ setup( 'License :: OSI Approved :: BSD License', '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 :: Only', @@ -113,7 +111,7 @@ setup( # packages=find_packages(include=['quapy', 'quapy.*']), # Required - python_requires='>=3.6, <4', + python_requires='>=3.8, <4', install_requires=['scikit-learn', 'pandas', 'tqdm', 'matplotlib', 'joblib', 'xlrd', 'abstention'],