From dfc95785e51c1fbd260b872bbe0d341bdbd28603 Mon Sep 17 00:00:00 2001 From: rhaertel80 Date: Wed, 7 Sep 2022 07:26:16 -0700 Subject: [PATCH] =?UTF-8?q?chore:=20Install=20uvicorn[standard]=20for=20cy?= =?UTF-8?q?thon=20versions=20of=20libraries=20to=20improve=E2=80=A6=20(#16?= =?UTF-8?q?39)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … performance. Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-aiplatform/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes # 🦕 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5e8165c12b..3f63c8393e 100644 --- a/setup.py +++ b/setup.py @@ -77,7 +77,7 @@ # See https://github.com/tiangolo/fastapi/pull/4488. "fastapi >= 0.71.0, <0.76.0", "starlette >= 0.17.1", - "uvicorn >= 0.16.0", + "uvicorn[standard] >= 0.16.0", ] endpoint_extra_require = ["requests >= 2.28.1"]