From 15d36d4a3a83924bd9a696a2e96e4749a9a2beaf Mon Sep 17 00:00:00 2001 From: philippadoherty Date: Wed, 31 Jan 2024 16:14:30 -0500 Subject: [PATCH] try >=1.25 --- pyproject.toml | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d6d77006..6dd646ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,2 +1,2 @@ [build-system] -requires=['setuptools>=60.0', 'numpy==1.24.2', 'cykhash>=2.0,<3.0', 'Cython~=3.0', 'hmmlearn>=0.3'] +requires=['setuptools>=60.0', 'numpy>=1.25', 'cykhash>=2.0,<3.0', 'Cython~=3.0', 'hmmlearn>=0.3'] diff --git a/requirements.txt b/requirements.txt index 51376433..64003f38 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ Cython~=3.0 -numpy==1.24.2 +numpy>=1.25 hmmlearn>=0.3 cykhash>=2.0,<3.0 pytest>=7.0 diff --git a/setup.py b/setup.py index b895f5a5..200e6724 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ 'Programming Language :: Python :: 3.12', 'Programming Language :: Cython', ] -install_requires = [ "numpy==1.24.2", +install_requires = [ "numpy>=1.25", "hmmlearn>=0.3", "cykhash>=2.0,<3.0"]