From ea184278be4a6e6a492d483e7125151c56d408bb Mon Sep 17 00:00:00 2001 From: Shreyas Vinaya Date: Thu, 19 Dec 2024 22:43:10 +0530 Subject: [PATCH 1/3] Update numpy version --- Python/setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Python/setup.py b/Python/setup.py index f36741e..717c7b1 100644 --- a/Python/setup.py +++ b/Python/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages install_requires = [ - "numpy>=1.16.0", + "numpy<=1.26.4", "scipy>=1.1.0", "scikit-learn>=0.20.0", "future", @@ -69,6 +69,11 @@ "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering :: Bio-Informatics", "Topic :: Scientific/Engineering :: Visualization", ], From eeaf71aea65d9ae3f3ce47f811f03a5e9872369b Mon Sep 17 00:00:00 2001 From: Shreyas Vinaya Date: Thu, 19 Dec 2024 22:43:28 +0530 Subject: [PATCH 2/3] Update requirements.txt --- Python/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/requirements.txt b/Python/requirements.txt index 5930d2f..df45a44 100644 --- a/Python/requirements.txt +++ b/Python/requirements.txt @@ -1,4 +1,4 @@ -numpy>=1.16.0 +numpy<=1.26.4 scipy>=1.1.0 scikit-learn>=0.20.0 future From b6dddbf8c5ef88464bf24b8f4dfba09b3cfd3355 Mon Sep 17 00:00:00 2001 From: Shreyas Vinaya Date: Thu, 19 Dec 2024 22:44:13 +0530 Subject: [PATCH 3/3] bump up python version --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 0feee37..e513ebc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,8 @@ python: - "3.7" - "3.8" - "3.9" + - "3.10" + - "3.11" sudo: required