From c72a1ab937ce77d40c3124bb7c4f36478dfa071a Mon Sep 17 00:00:00 2001 From: Alex Daniel Date: Thu, 7 Sep 2023 13:09:29 +0100 Subject: [PATCH] Relax requirements a bit Kept core packages that will effect results with more tight requirements though. --- requirements.txt | 24 ++++++++++++------------ setup.py | 1 + 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/requirements.txt b/requirements.txt index 91fc410b..03ddfef0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,14 +1,14 @@ -dipy~=1.6.0 -matplotlib~=3.7.0 +dipy>=1.6.0 +matplotlib>=3.7.0 nibabel>=5.0.1 -notebook~=6.5.1 -numba~=0.57.1 -numpy~=1.24.1 -pandas~=2.0.2 -pathos~=0.3.0 +notebook>=6.5.1 +numba>=0.55.1, <0.58 +numpy>=1.24.1, <1.26 +pandas>=2.0.0 +pathos>=0.3.0 renalsegmentor>=1.3.5 -scikit-image~=0.21.0 -scipy~=1.9.1 -scikit-learn~=1.2.1 -tabulate~=0.9.0 -tqdm~=4.64.1 +scikit-image>=0.20.0, <0.22 +scipy>=1.9.1, <1.12 +scikit-learn~=1.3.0 # Change to >=1.2.1, <1.4 if this works +tabulate>=0.9.0 +tqdm>=4.64.1 diff --git a/setup.py b/setup.py index e4336cf9..bcf89025 100644 --- a/setup.py +++ b/setup.py @@ -32,6 +32,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', ], )