From cd8b7f117efed2d9c39c49b3d80c6130f79c3d35 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 2 Aug 2021 10:08:49 +0000 Subject: [PATCH] Build(deps): Bump uvicorn from 0.12.2 to 0.14.0 in /calc Bumps [uvicorn](https://github.com/encode/uvicorn) from 0.12.2 to 0.14.0. - [Release notes](https://github.com/encode/uvicorn/releases) - [Changelog](https://github.com/encode/uvicorn/blob/master/CHANGELOG.md) - [Commits](https://github.com/encode/uvicorn/compare/0.12.2...0.14.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> --- calc/poetry.lock | 28 ++++++++++++++++++++++------ calc/pyproject.toml | 2 +- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/calc/poetry.lock b/calc/poetry.lock index 5c12859..9105d75 100644 --- a/calc/poetry.lock +++ b/calc/poetry.lock @@ -6,6 +6,17 @@ category = "dev" optional = false python-versions = "*" +[[package]] +name = "asgiref" +version = "3.4.1" +description = "ASGI specs, helper code, and adapters" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +tests = ["pytest", "pytest-asyncio", "mypy (>=0.800)"] + [[package]] name = "atomicwrites" version = "1.4.0" @@ -450,29 +461,34 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [[package]] name = "uvicorn" -version = "0.12.2" +version = "0.14.0" description = "The lightning-fast ASGI server." category = "main" optional = false python-versions = "*" [package.dependencies] -click = ">=7.0.0,<8.0.0" +asgiref = ">=3.3.4" +click = ">=7" h11 = ">=0.8" [package.extras] -standard = ["websockets (>=8.0.0,<9.0.0)", "watchgod (>=0.6,<0.7)", "python-dotenv (>=0.13)", "PyYAML (>=5.1)", "httptools (>=0.1.0,<0.2.0)", "uvloop (>=0.14.0)", "colorama (>=0.4)"] +standard = ["websockets (>=9.1)", "httptools (>=0.2.0,<0.3.0)", "watchgod (>=0.6)", "python-dotenv (>=0.13)", "PyYAML (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "colorama (>=0.4)"] [metadata] lock-version = "1.1" python-versions = "^3.8" -content-hash = "66f02f91d516162da0b0fac592c4cc0339a04d25a113f45e44a8c971cd247854" +content-hash = "f017fd3188ae93d27c813420ca72a48cac8d131b135fca7027fe31c0441db34d" [metadata.files] appdirs = [ {file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"}, {file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"}, ] +asgiref = [ + {file = "asgiref-3.4.1-py3-none-any.whl", hash = "sha256:ffc141aa908e6f175673e7b1b3b7af4fdb0ecb738fc5c8b88f69f055c2415214"}, + {file = "asgiref-3.4.1.tar.gz", hash = "sha256:4ef1ab46b484e3c706329cedeff284a5d40824200638503f5768edb6de7d58e9"}, +] atomicwrites = [ {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"}, {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"}, @@ -792,6 +808,6 @@ urllib3 = [ {file = "urllib3-1.26.5.tar.gz", hash = "sha256:a7acd0977125325f516bda9735fa7142b909a8d01e8b2e4c8108d0984e6e0098"}, ] uvicorn = [ - {file = "uvicorn-0.12.2-py3-none-any.whl", hash = "sha256:e5dbed4a8a44c7b04376021021d63798d6a7bcfae9c654a0b153577b93854fba"}, - {file = "uvicorn-0.12.2.tar.gz", hash = "sha256:8ff7495c74b8286a341526ff9efa3988ebab9a4b2f561c7438c3cb420992d7dd"}, + {file = "uvicorn-0.14.0-py3-none-any.whl", hash = "sha256:2a76bb359171a504b3d1c853409af3adbfa5cef374a4a59e5881945a97a93eae"}, + {file = "uvicorn-0.14.0.tar.gz", hash = "sha256:45ad7dfaaa7d55cab4cd1e85e03f27e9d60bc067ddc59db52a2b0aeca8870292"}, ] diff --git a/calc/pyproject.toml b/calc/pyproject.toml index 0d804b2..075afe6 100644 --- a/calc/pyproject.toml +++ b/calc/pyproject.toml @@ -8,7 +8,7 @@ authors = ["Your Name <you@example.com>"] python = "^3.8" Click = "^7.1.2" fastapi = "^0.61.1" -uvicorn = "^0.12.2" +uvicorn = "^0.14.0" numpy = "^1.21.1" scipy = "^1.6.1" httpie = "^2.4.0"