From 79068f2f103514fccf20de37aaed2ccc080aab1b Mon Sep 17 00:00:00 2001 From: ducklet Date: Sun, 26 Nov 2023 16:46:38 +0100 Subject: [PATCH] add honcho as explicit dev dependency --- poetry.lock | 19 ++++++++++++++++++- pyproject.toml | 1 + 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 0ed6343..038655e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -270,6 +270,23 @@ files = [ {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, ] +[[package]] +name = "honcho" +version = "1.1.0" +description = "Honcho: a Python clone of Foreman. For managing Procfile-based applications." +optional = false +python-versions = "*" +files = [ + {file = "honcho-1.1.0-py2.py3-none-any.whl", hash = "sha256:a4d6e3a88a7b51b66351ecfc6e9d79d8f4b87351db9ad7e923f5632cc498122f"}, + {file = "honcho-1.1.0.tar.gz", hash = "sha256:c5eca0bded4bef6697a23aec0422fd4f6508ea3581979a3485fc4b89357eb2a9"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "sys_platform == \"win32\""} + +[package.extras] +export = ["jinja2 (>=2.7,<3)"] + [[package]] name = "html5lib" version = "1.1" @@ -690,4 +707,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "a3ac6ffc5086acd93ceea6edb9d72444407d7918f2674883087170762135be80" +content-hash = "17bf1e1330a25f59ffec4ff3aa70d8e9d9e93553a81f72c0823d76125f6ccd08" diff --git a/pyproject.toml b/pyproject.toml index 742a19e..73eab62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,7 @@ pyright = "*" pytest-asyncio = "*" pytest-cov = "*" ruff = "*" +honcho = "*" [build-system] requires = ["poetry-core>=1.0.0"]