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 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 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", ],