From 18eddf7cfbd99650cfef9988265b1b4a7c3749bf Mon Sep 17 00:00:00 2001 From: Stefan Negru Date: Tue, 12 Nov 2019 14:30:12 +0200 Subject: [PATCH] fix gunicorn for alpine until this is resolved: https://github.com/benoitc/gunicorn/issues/2160 --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 1b167433..add187bc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,4 +12,4 @@ aiocache ujson aiomcache authlib -gunicorn +gunicorn==19.9.0 diff --git a/setup.py b/setup.py index ab7b6dae..433eeea5 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ 'Programming Language :: Python :: 3.7', ], install_requires=['aiohttp', 'asyncpg', 'authlib', - 'jsonschema', 'gunicorn'], + 'jsonschema', 'gunicorn==19.9.0'], extras_require={ 'test': ['coverage', 'pytest', 'pytest-cov', 'coveralls', 'testfixtures', 'tox',