From 29c0a11c374faa4065093b0f488f294b879bec9b Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 7 May 2023 12:54:50 +0200 Subject: [PATCH] Forced to use the gunicorn version on Github. Reason: gunicorn maintainers no longer give a fuck about their project and they aren't letting anybody take over either - see https://github.com/benoitc/gunicorn/pull/2581 This is not how a FOSS project should be run. A project with 9k stars and countless usages shouldn't end up in a situation where users beg for two years for a new release that fixes a bad regression and a bad security vulnerability. The way gunicorn is maintained and run is an insult to the whole FOSS community. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 775759f43..e83e61143 100755 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ setup( 'eventlet', 'flask', 'frozendict', - 'gunicorn', + 'gunicorn @ https://github.com/benoitc/gunicorn/tarball/master', 'marshmallow', 'marshmallow_dataclass', 'python-dateutil',