deps: updated poetry.lock and pyproject.toml to use updated poetry format

This commit is contained in:
Ceferino Patino 2025-02-13 09:42:36 -06:00
commit 9936113bd0
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI
2 changed files with 768 additions and 615 deletions

1343
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,19 +1,23 @@
[tool.poetry] [project]
name = "slurm-tuner" name = "slurm-tuner"
version = "0.1.0" version = "0.1.0"
description = "" description = ""
authors = ["C4 Patino <c4patino@gmail.com>"] authors = [
license = "GPL-3.0-or-later" { name = "C4 Patino", email = "c4patino@gmail.com" }
]
license = { text = "AGPL-3.0-or-later" }
readme = "README.md"
[tool.poetry.dependencies] requires-python = "^3.9"
python = "^3.9" dependencies = [
optuna = "^4.0.0" "optuna (>=4.2.1,<5.0.0)",
neptune = "^1.12.0" "neptune (>=1.13.0,<2.0.0)",
neptune-optuna = "^1.3.0" "neptune-optuna (>=1.4.1,<2.0.0)",
numpy = "^1.26.4" "numpy (>=1.26.4,<2.0.0)",
pandas = "^2.2.3" "pandas (>=2.2.3,<3.0.0)"
]
[build-system] [build-system]
requires = ["poetry-core"] requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"