Skip to content

Commit b108bee

Browse files
authored
[Devops] Relax dependency ranges to next major number (#1459)
* relax dependencies * mend * mend * update lock
1 parent 3328378 commit b108bee

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

poetry.lock

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ Homepage = "https://github.com/ourownstory/neural_prophet"
1919

2020
[tool.poetry.dependencies]
2121
python = ">=3.8,<3.11"
22-
captum = "^0.6.0"
23-
holidays = "^0.33"
22+
captum = ">=0.6.0,<1.0"
23+
holidays = ">=0.33,<1.0"
2424
matplotlib = "^3.5.3"
2525
numpy = "^1.22.0"
2626
pandas = "^1.3.5"
2727
plotly = "^5.13.1"
28-
plotly-resampler = "^0.8.3.1"
29-
pytorch-lightning = "^1.9.4"
28+
plotly-resampler = ">=0.8.3.1,<1.0"
29+
pytorch-lightning = "^1.9.4" # TODO: move to ^2.0
3030
tensorboard = "^2.11.2"
31-
torch = "2.0.0"
32-
torchmetrics = "^0.11.3"
31+
torch = "2.0.0" # TODO: relax to ^2.0
32+
torchmetrics = ">=0.11.3,<1.0"
3333
typing-extensions = "^4.5.0"
3434
nbformat = ">=4.2.0"
35-
livelossplot = { version = "^0.5.5", optional = true }
35+
livelossplot = { version = ">=0.5.5,<1.0", optional = true }
3636

3737
[tool.poetry.extras]
3838
live = ["livelossplot"]
@@ -61,7 +61,7 @@ furo = "^2022.9.29"
6161
optional = true
6262

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

6666
[build-system]
6767
requires = ["poetry-core"]

0 commit comments

Comments
 (0)