From 6b3f753947a9e2fb830963663ae2f1e3a510af0d Mon Sep 17 00:00:00 2001 From: James Krieger Date: Thu, 19 Sep 2024 13:04:05 +0200 Subject: [PATCH] unlimit scipy --- pyproject.toml | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 40aa5e374..146e85d9c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,2 +1,2 @@ [build-system] -requires = ["setuptools", "wheel", "numpy>=1.10,<1.25", "pyparsing<=3.1.1", "scipy<=1.13.1"] +requires = ["setuptools", "wheel", "numpy>=1.10,<1.24", "pyparsing<=3.1.1", "scipy"] diff --git a/setup.py b/setup.py index f85413b04..8afb6a805 100644 --- a/setup.py +++ b/setup.py @@ -14,9 +14,9 @@ sys.exit() if sys.version_info[:2] == (2, 7) or sys.version_info[:2] <= (3, 5): - INSTALL_REQUIRES=['numpy>=1.10,<1.25', 'biopython<=1.76', 'pyparsing', 'scipy'] + INSTALL_REQUIRES=['numpy>=1.10', 'biopython<=1.76', 'pyparsing', 'scipy'] else: - INSTALL_REQUIRES=['numpy>=1.10,<1.24', 'biopython', 'pyparsing<=3.1.1', 'scipy<=1.13.1', 'setuptools'] + INSTALL_REQUIRES=['numpy>=1.10,<1.24', 'biopython', 'pyparsing<=3.1.1', 'scipy', 'setuptools'] if sys.version_info[0] == 3 and sys.version_info[1] < 6: sys.stderr.write('Python 3.5 and older is not supported\n')