Skip to content

Commit

Permalink
Fix numpy version
Browse files Browse the repository at this point in the history
  • Loading branch information
pablormier authored Jun 21, 2024
1 parent 7dabb0f commit fb079ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ packages = [
exclude = ["**/tests", "**/docs"]

[tool.poetry.dependencies]
python = ">=3.9 <4"
numpy = ">=1.15"
python = ">=3.9"
numpy = "^1.26"
cvxpy-base = {version = "^1.5.0", optional = true}
scipy = {version = ">=1.11.0", optional = true}
scipy = {version = "^1.11.0", optional = true}

[tool.poetry.group.dev.dependencies]
scipy = ">=1.11.0"
scipy = "^1.11.0"
pyscipopt = "^5.0.0"
graphviz = "^0.20.1"
cobra = "^0.29.0"
Expand Down

0 comments on commit fb079ea

Please sign in to comment.