Skip to content

Commit

Permalink
Fix version limits
Browse files Browse the repository at this point in the history
  • Loading branch information
pablormier committed Jun 21, 2024
1 parent 3548593 commit 54727a7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ 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"
pyscipopt = "^5.0.0"
scipy = "^1.11.0"
pyscipopt = "^5.0.1"
graphviz = "^0.20.1"
cobra = "^0.29.0"
networkx = "^3.2.1"
Expand Down

0 comments on commit 54727a7

Please sign in to comment.