From b45c0bf746334ef0605dcf99c5fb443d53412f22 Mon Sep 17 00:00:00 2001 From: "Maxime Alves LIRMM@home" Date: Mon, 28 Jun 2021 12:09:56 +0200 Subject: [PATCH] [deps] Avoid starlette update to 0.15, stay in latest 0.14 --- Pipfile | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Pipfile b/Pipfile index fca048a..b7cb072 100644 --- a/Pipfile +++ b/Pipfile @@ -11,7 +11,7 @@ pylint = "*" [packages] click = ">=7.1,<8" -starlette = ">=0.14,<1" +starlette = ">=0.14,<0.15" uvicorn = ">=0.13,<1" orjson = ">=3.4.7,<4" pyjwt = ">=2.0.1,<3" diff --git a/setup.py b/setup.py index 9b41325..aa385eb 100755 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ setup( python_requires=">=3.7", install_requires=[ "PyJWT>=2.0.1", - "starlette>=0.14,<1", + "starlette>=0.14,<0.15", "click>=7.1,<8", "uvicorn>=0.13,<1", "orjson>=3.4.7,<4",