From d7a14a8925d16ab904215d9311bec799200e6814 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Fri, 30 Apr 2021 18:08:19 +0200 Subject: [PATCH] Remove the limit on Gunicorn dependency (#15611) It seems that the < 20.0 limit for gunicorn was added at some point in time without actual reason. We are already using gunicorn in 1.10 line of Airflow, so it should not be a problem to bump the version of gunicorn, especially that the 19. line is somewhat deprecated already. This change came after the discussion n #15570 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index dbe27039a0215d..bad32b3a8b7c6d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -99,7 +99,7 @@ install_requires = flask-login>=0.3, <0.5 flask-wtf>=0.14.3, <0.15 graphviz>=0.12 - gunicorn>=19.5.0, <20.0 + gunicorn>=19.5.0 importlib_metadata~=1.7;python_version<"3.9" # We could work with 3.1, but argparse needs <2 importlib_resources~=1.4 iso8601>=0.1.12