From 67d4806d56ffe7db45a166d6613d026b26b7854c Mon Sep 17 00:00:00 2001 From: Caleb Dykman Date: Tue, 17 Dec 2024 11:30:12 +1100 Subject: [PATCH] pyproject.toml dependencies version static --- pyproject.toml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 62459ec..efabbb7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,22 +7,22 @@ license = "None" readme = "README.md" [tool.poetry.dependencies] -python = ">=3.8" -numpy = ">=1.23.5" -matplotlib = ">=3.6.2" -numba = ">=0.56.4" -netCDF4 = ">=1.6.2" -scipy = ">=1.9.3" -joblib = ">=1.4.2" +python = "=3.8.5" +numpy = "=1.23.5" +matplotlib = "=3.6.2" +numba = "=0.56.4" +netCDF4 = "=1.6.2" +scipy = "=1.9.3" +joblib = "=1.4.2" pandas = "1.5.3" xarray = "2023.01.0" [tool.poetry.dev-dependencies] -myst-nb = {version = "^0.17.1", python = "^3.8"} -sphinx-autoapi = "^2.0.0" -sphinx-rtd-theme = "^1.1.1" -jupyter = "^1.0.0" +myst-nb = {version = "0.17.1", python = "3.8.5"} +sphinx-autoapi = "2.0.0" +sphinx-rtd-theme = "1.1.1" +jupyter = "1.0.0" [build-system] -requires = ["poetry-core>=1.0.0"] +requires = ["poetry-core=1.0.0"] build-backend = "poetry.core.masonry.api"