Skip to content

Commit

Permalink
Merge pull request #95 from chrhansk/hotfix-dependency-versions
Browse files Browse the repository at this point in the history
Relax dependency requirements
  • Loading branch information
chrhansk authored May 28, 2024
2 parents da7ce5e + 5474f72 commit 516648e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
project = "pygradflow"
copyright = "2023, Christoph Hansknecht"
author = "Christoph Hansknecht"
release = "0.5.2"
release = "0.5.3"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pygradflow"
version = "0.5.2"
version = "0.5.3"
description = "PyGradFlow is a simple implementation of the sequential homotopy method to be used to solve general nonlinear programs."
authors = ["Christoph Hansknecht <[email protected]>"]
readme = "README.md"
Expand All @@ -10,12 +10,12 @@ documentation = "https://pygradflow.readthedocs.io"

[tool.poetry.dependencies]
python = ">=3.9,<3.13"
scipy = "^1.10.1"
matplotlib = "^3.7.1"
termcolor = "^2.3.0"
numpy = "^1.20"
pyyaml = "^6.0.1"
cyipopt = "^1.4.1"
scipy = "^1"
matplotlib = ">=3.7.0"
termcolor = ">=2.3.0"
numpy = "^1"
pyyaml = ">=6.0.0"
cyipopt = ">=1.4.0"

[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
Expand Down

0 comments on commit 516648e

Please sign in to comment.