Skip to content

Commit

Permalink
limit numpy < 2.0.0 #14
Browse files Browse the repository at this point in the history
  • Loading branch information
bl-young committed Jun 17, 2024
1 parent c0cd7ab commit e7d35a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ bibtexparser>=1.2.0 # Generates bibtex
kaleido == 0.1.0.post1; platform_system == "Windows" # export plotly.py figures as static images
kaleido == 0.2.0; platform_system=="Linux" or platform_system=="Darwin"
matplotlib >= 3.4.3 # Plotting
numpy>=1.20.1 # Library used for arrays
numpy>=1.20.1, <2.0.0 # Library used for arrays
openpyxl >= 3.0.7 # Extract data from xlsm files
pandas>=1.4.0, <2.1.0 # Powerful data structures for data analysis, time series, and statistics.
pip>=9 # The PyPA recommended tool for installing Python packages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kaleido==0.1.0.post1;platform_system=='Windows'",
"kaleido==0.2.0;platform_system=='Linux' or platform_system=='Darwin'",
'matplotlib>=3.4.3',
'numpy>=1.20.1',
'numpy>=1.20.1, <2.0.0',
'openpyxl>=3.0.7',
'pandas>=1.4.0, <2.1.0',
'pip>=9',
Expand Down

0 comments on commit e7d35a1

Please sign in to comment.