From 7a10451dd4a570741a330b3d8241b7df07f58169 Mon Sep 17 00:00:00 2001 From: Ryan Park Date: Tue, 3 Feb 2015 10:23:54 -0800 Subject: [PATCH] Restore gunicorn in the list of third-party requirements `gunicorn==18.0` had previously been listed in requirements.txt, but I removed it in commit d851a7e2a1a3239dd853ff88f918e1c52cf4b8f4 for compatibility with the new httpbin.org hosting platform. gunicorn 19.2 has (finally) been released, and this version will work correctly for httpbin.org. This change adds `gunicorn==19.2` back to requirements.txt. This may also fix problems deploying to Heroku reported by @sigmavirus24, which may have been caused by the requirement change in d851a7e2a1a3239dd853ff88f918e1c52cf4b8f4. --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index a69953b..80b5ece 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,6 +2,7 @@ decorator==3.4.0 Flask==0.10.1 gevent==1.0.1 greenlet==0.4.2 +gunicorn==19.2 itsdangerous==0.24 Jinja2==2.7.2 MarkupSafe==0.23