Skip to content

Commit

Permalink
Restrict numpy version
Browse files Browse the repository at this point in the history
  Currently there is a version conflict with the
  latest numpy version and pandas.
  This should probably reverted once it's cleared up.
  • Loading branch information
jonasfreimuth committed Mar 24, 2024
1 parent 14d5ee3 commit 045e3cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
numpy>=1.7
# For pandas requirement, currently numpy<2,>=1.22.4
numpy<2,>=1.7
pandas>=0.21
pytz>=2013
sphinxcontrib-napoleon>=0.6.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

# TODO: Automatically add requirements from requirements.txt
requirements = [
"numpy>=1.7",
"numpy<2,>=1.7",
"pandas>=0.17",
"requests>=2.21.0",
"tqdm>=4.31.1",
Expand Down

0 comments on commit 045e3cf

Please sign in to comment.