From 2b30d91cbc312c0b3c7764397392dfad8edd738d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Jul 2023 15:07:27 +0000 Subject: [PATCH] Update uvicorn requirement from ==0.15.* to >=0.15,<0.23 Updates the requirements on [uvicorn](https://github.com/encode/uvicorn) to permit the latest version. - [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.15.0...0.22.0) --- updated-dependencies: - dependency-name: uvicorn dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4c68fdc6e..6af7d28b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ classifiers=[ ] dependencies = [ "fastapi==0.68.*", - "uvicorn==0.15.*", + "uvicorn>=0.15,<0.23", "numpy>=1.23,<1.26", "aiofiles", "tqdm",