From 60ecb34621f41fd11198c4809aa2a54e6c60e87e Mon Sep 17 00:00:00 2001 From: Christiaan Meijer Date: Thu, 8 Aug 2024 12:07:51 +0200 Subject: [PATCH] Update setup.py remove dependency restrictions --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index a118470..2bd2355 100644 --- a/setup.py +++ b/setup.py @@ -24,9 +24,9 @@ def read(fname): test_suite="tests", python_requires='>=3.10', install_requires=[ - "numpy<1.22.0", - "scikit-learn>=0.15.0,<1.1.0", - "scipy>=0.11,<1.8.0", + "numpy", + "scikit-learn", + "scipy", "tensorflow>=2.0.0", "h5py", ],