1
0
Fork 0

specifying python >= 3.8 in setup

This commit is contained in:
Alejandro Moreo Fernandez 2023-02-20 09:39:04 +01:00
parent 8fc4669046
commit 3779bb2123
1 changed files with 1 additions and 3 deletions

View File

@ -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'],