diff options
author | Andrew Browning <ayleph@thisshitistemp.com> | 2016-08-26 11:34:18 -0400 |
---|---|---|
committer | Andrew Browning <ayleph@thisshitistemp.com> | 2016-08-26 11:34:18 -0400 |
commit | d37c6f622a33fc3e0e37f84d1e90d287794d0a04 (patch) | |
tree | a3e50e05b01ec8d2affe5762a8d9d4d83154df99 /setup.py | |
parent | 9d935dd838eb7bde958d7b36064334b9b6e64102 (diff) | |
download | mediagoblin-d37c6f622a33fc3e0e37f84d1e90d287794d0a04.tar.lz mediagoblin-d37c6f622a33fc3e0e37f84d1e90d287794d0a04.tar.xz mediagoblin-d37c6f622a33fc3e0e37f84d1e90d287794d0a04.zip |
Modify setup.py version syntax to address #5464
Some users report that even with version <4.0 specified in setup.py,
the 4.0-rc builds of kombu and celery were still being downloaded.
This patch uses a different version syntax as suggested in a Stack
Overflow thread.
https://stackoverflow.com/a/14405269
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -56,8 +56,8 @@ install_requires = [ 'pytest>=2.3.1', 'pytest-xdist', 'werkzeug>=0.7', - 'celery>=3.0,<4.0', - 'kombu<4.0', + 'celery>=3.0,<4.0a0', + 'kombu<4.0a0', 'jinja2', 'Babel>=1.3', 'WebTest>=2.0.18', |