Skip to content

Commit

Permalink
Merge pull request #148 from shreyasvinaya/main
Browse files Browse the repository at this point in the history
Fix Numpy issues and bump up python version
  • Loading branch information
bjoaofelipe authored Jan 6, 2025
2 parents 39ccebe + b6dddbf commit 9acd398
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ python:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"

sudo: required

Expand Down
2 changes: 1 addition & 1 deletion Python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.16.0
numpy<=1.26.4
scipy>=1.1.0
scikit-learn>=0.20.0
future
Expand Down
7 changes: 6 additions & 1 deletion Python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
],
Expand Down

0 comments on commit 9acd398

Please sign in to comment.