From 4ed5551d0ef6173dc9f24ef203ba86a304e0a1ac Mon Sep 17 00:00:00 2001 From: Alexander Hess Date: Mon, 15 Jul 2024 09:48:20 +0200 Subject: [PATCH] Add invoke to the dev dependencies --- poetry.lock | 13 ++++++++++++- pyproject.toml | 1 + 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 48c90c4..b44ac31 100644 --- a/poetry.lock +++ b/poetry.lock @@ -830,6 +830,17 @@ zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] testing = ["jaraco.test (>=5.4)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "zipp (>=3.17)"] +[[package]] +name = "invoke" +version = "2.2.0" +description = "Pythonic task execution" +optional = false +python-versions = ">=3.6" +files = [ + {file = "invoke-2.2.0-py3-none-any.whl", hash = "sha256:6ea924cc53d4f78e3d98bc436b08069a03077e6f85ad1ddaa8a116d7dad15820"}, + {file = "invoke-2.2.0.tar.gz", hash = "sha256:ee6cbb101af1a859c7fe84f2a264c059020b0cb7fe3535f9424300ab568f6bd5"}, +] + [[package]] name = "ipykernel" version = "6.29.5" @@ -2865,4 +2876,4 @@ test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "445e69462dc127b0207ed7a1c400942f4afbee842356b7974bc6cfd9ac0671ae" +content-hash = "50d65895e6183867e6fe4c243acdc746a70d4353eb7fe17a6c03fa89c1c7176c" diff --git a/pyproject.toml b/pyproject.toml index 2e6b589..6c34cb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,3 +40,4 @@ scikit-learn = "^1.5" [tool.poetry.group.dev.dependencies] black = {extras = ["jupyter"], version = "^24.4"} +invoke = "^2.2"