Skip to content

Commit

Permalink
[Devops] Relax dependency ranges to next major number (#1459)
Browse files Browse the repository at this point in the history
* relax dependencies

* mend

* mend

* update lock
  • Loading branch information
ourownstory authored Oct 19, 2023
1 parent 3328378 commit b108bee
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
9 changes: 5 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ Homepage = "https://github.com/ourownstory/neural_prophet"

[tool.poetry.dependencies]
python = ">=3.8,<3.11"
captum = "^0.6.0"
holidays = "^0.33"
captum = ">=0.6.0,<1.0"
holidays = ">=0.33,<1.0"
matplotlib = "^3.5.3"
numpy = "^1.22.0"
pandas = "^1.3.5"
plotly = "^5.13.1"
plotly-resampler = "^0.8.3.1"
pytorch-lightning = "^1.9.4"
plotly-resampler = ">=0.8.3.1,<1.0"
pytorch-lightning = "^1.9.4" # TODO: move to ^2.0
tensorboard = "^2.11.2"
torch = "2.0.0"
torchmetrics = "^0.11.3"
torch = "2.0.0" # TODO: relax to ^2.0
torchmetrics = ">=0.11.3,<1.0"
typing-extensions = "^4.5.0"
nbformat = ">=4.2.0"
livelossplot = { version = "^0.5.5", optional = true }
livelossplot = { version = ">=0.5.5,<1.0", optional = true }

[tool.poetry.extras]
live = ["livelossplot"]
Expand Down Expand Up @@ -61,7 +61,7 @@ furo = "^2022.9.29"
optional = true

[tool.poetry.group.pyright.dependencies]
pandas-stubs = "^2"
pandas-stubs = "^2.0"

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit b108bee

Please sign in to comment.