From 7b7d8f717b5e11de2e97e1bf7271423d39a4f5dc Mon Sep 17 00:00:00 2001 From: Abram Date: Fri, 20 Dec 2024 13:34:25 +0100 Subject: [PATCH] chore (deps): add uvicorn to dev dependencies in agenta-cli --- agenta-cli/poetry.lock | 21 ++++++++++++++++++++- agenta-cli/pyproject.toml | 1 + 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/agenta-cli/poetry.lock b/agenta-cli/poetry.lock index df3b43f8a..034118a18 100644 --- a/agenta-cli/poetry.lock +++ b/agenta-cli/poetry.lock @@ -2445,6 +2445,25 @@ h2 = ["h2 (>=4,<5)"] socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] zstd = ["zstandard (>=0.18.0)"] +[[package]] +name = "uvicorn" +version = "0.34.0" +description = "The lightning-fast ASGI server." +optional = false +python-versions = ">=3.9" +files = [ + {file = "uvicorn-0.34.0-py3-none-any.whl", hash = "sha256:023dc038422502fa28a09c7a30bf2b6991512da7dcdb8fd35fe57cfc154126f4"}, + {file = "uvicorn-0.34.0.tar.gz", hash = "sha256:404051050cd7e905de2c9a7e61790943440b3416f49cb409f965d9dcd0fa73e9"}, +] + +[package.dependencies] +click = ">=7.0" +h11 = ">=0.8" +typing-extensions = {version = ">=4.0", markers = "python_version < \"3.11\""} + +[package.extras] +standard = ["colorama (>=0.4)", "httptools (>=0.6.3)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.4)"] + [[package]] name = "wcwidth" version = "0.2.13" @@ -2653,4 +2672,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "522bb5aa006e2ab6dd86d1df90e8ef6ce3c0d6a4e9e179e024fece1167a6e451" +content-hash = "b1b8cc5b3129390cbd20bd57013df192d0c1fab88707bfa960c6379f5bbb3771" diff --git a/agenta-cli/pyproject.toml b/agenta-cli/pyproject.toml index 9b332546b..b1cabc1b7 100644 --- a/agenta-cli/pyproject.toml +++ b/agenta-cli/pyproject.toml @@ -47,6 +47,7 @@ setuptools = "^71.1.0" pytest-asyncio = "^0.24.0" mypy = "^1.13.0" pytest-xdist = "^3.6.1" +uvicorn = "^0.34.0" [tool.pytest.ini_options] asyncio_default_fixture_loop_scope = "function"