Restoring environment*.yml's, adding new dependencies, remove the [cli] option

This commit is contained in:
Justin Guese
2024-07-12 19:51:46 +02:00
parent a8901d2431
commit ac92e0ea69
5 changed files with 201 additions and 319 deletions
+9 -12
View File
@@ -30,19 +30,16 @@ include = [
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
einshape = ">=1.0.0"
numpy = ">=1.26.4"
pandas = ">=2.1.4"
einshape = "1.0.0"
numpy = "1.26.4"
pandas = "2.1.4"
paxml = "1.4.0"
utilsforecast = "^0.1.10"
jax = {version = "0.4.26", extras = ["cuda12"]}
# unfortunately we have to solve it using https://stackoverflow.com/questions/72037181/how-to-add-optional-dependencies-of-a-library-as-extra-in-poetry-and-pyproject
Jax = {version = "0.4.26", extras = ["cpu"], optional = true}
[tool.poetry.extras]
cpu = ['Jax']
utilsforecast = "0.1.10"
jax = "0.4.26"
jaxlib = "0.4.26"
huggingface_hub = {version = "0.23.0", extras = ["cli"]}
scikit-learn = "1.5.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
build-backend = "poetry.core.masonry.api"