Skip to content

Commit

Permalink
Relaxed numpy requirements
Browse files Browse the repository at this point in the history
Signed-off-by: David Davó <[email protected]>
  • Loading branch information
daviddavo committed Jul 31, 2024
1 parent 5f02f45 commit 18ff5b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"locust>=2.12.2,<3", # requires jinja2
"memory-profiler>=0.61.0,<1",
"nltk>=3.8.1,<4", # requires tqdm
"numpy>=1.26.4;python_version>='3.12'", # https://stackoverflow.com/a/77364602/4505998
"numpy>=1.26.4,<2;python_version>='3.12'", # https://stackoverflow.com/a/77364602/4505998
"notebook>=6.5.5,<8", # requires ipykernel, jinja2, jupyter, nbconvert, nbformat, packaging, requests
"numba>=0.57.0,<1",
"numpy<2.0.0", # FIXME: Remove numpy<2.0.0 once cornac release a version newer than 2.2.1 that resolve ImportError: numpy.core.multiarray failed to import.
Expand Down Expand Up @@ -128,6 +128,6 @@
exclude=["contrib", "docs", "examples", "scenarios", "tests", "tools"],
),
setup_requires=[
"numpy>=1.26.4",
"numpy>=1.15",
],
)

0 comments on commit 18ff5b7

Please sign in to comment.