From 3b0d1a1ec9f72346444743e961053cbba55bea50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Dav=C3=B3?= Date: Wed, 31 Jul 2024 15:49:38 +0200 Subject: [PATCH] Bumped required python version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: David Davó --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 25cfecae3..740606e15 100644 --- a/setup.py +++ b/setup.py @@ -39,8 +39,7 @@ "numba>=0.57.0,<1", "numpy<2.0.0", # FIXME: Remove numpy<2.0.0 once cornac release a version newer than 2.2.1 that resolve ImportError: numpy.core.multiarray failed to import. "pandas>2.0.0,<3.0.0", # requires numpy - "pandera[strategies]>=0.6.5,<0.18;python_version<='3.8'", # For generating fake datasets - "pandera[strategies]>=0.15.0;python_version>='3.9'", + "pandera[strategies]>=0.15.0", "retrying>=1.3.4,<2", "scikit-learn>=1.2.0,<2", # requires scipy, and introduce breaking change affects feature_extraction.text.TfidfVectorizer.min_df "scikit-surprise>=1.1.3", @@ -121,7 +120,7 @@ "machine learning python spark gpu", install_requires=install_requires, package_dir={"recommenders": "recommenders"}, - python_requires=">=3.6", + python_requires=">=3.9", packages=find_packages( where=".", exclude=["contrib", "docs", "examples", "scenarios", "tests", "tools"],