From: Christopher Allan Webber <cwebber@dustycloud.org>
Date: Mon, 15 Sep 2014 16:46:56 +0000 (-0500)
Subject: Upgrading gunicorn.  Referenced issue is resolved.
X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=3c06c3efafaf6834e157f3ffa17eb1f0b42f5a39;p=mediagoblin.git

Upgrading gunicorn.  Referenced issue is resolved.

Also, upgrading seems to fix weird
"RuntimeError: dictionary changed size during iteration" issues
I was seeing.  (Looked like a gunicorn issue, not ours.)
---

diff --git a/setup.py b/setup.py
index 0d4af5ab..ed10df02 100644
--- a/setup.py
+++ b/setup.py
@@ -55,9 +55,7 @@ if PY2:
     py2_only_install_requires.append('mock')  # mock is in the stdlib for 3.3+
 
 install_requires = [
-    # TODO(berker): Upgrade to 19.2
-    # See https://github.com/benoitc/gunicorn/issues/830
-    'gunicorn==19',
+    'gunicorn',
     'alembic==0.6.6',
     'python-dateutil',
     'wtforms',