Skip to content

Commit

Permalink
refactor(dependencies): pin numpy<2 until other reqs support it (#2092)
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Feb 7, 2024
1 parent 68228b4 commit 391a369
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion etc/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies:

# required
- python>=3.8
- numpy>=1.15.0
- numpy>=1.15.0,<2.0.0
- matplotlib>=1.4.0

# lint
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers = [
]
requires-python = ">=3.8"
dependencies = [
"numpy >=1.15.0",
"numpy >=1.15.0,<2.0.0",
"matplotlib >=1.4.0",
"pandas >=2.0.0"
]
Expand Down

0 comments on commit 391a369

Please sign in to comment.