Skip to content

Commit 4ed4067

Browse files
vytisbauvipy
authored andcommitted
Updated requirements to show incompatibility with Celery 4. (#486)
1 parent 216e173 commit 4ed4067

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

requirements/default.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
celery>=3.1.15
1+
celery>=3.1.15,<4.0

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ all_files = 1
77
upload-dir = docs/.build/html
88

99
[bdist_rpm]
10-
requires = celery >= 3.1.15
10+
requires = celery >= 3.1.15, < 4.0
1111
django >= 1.8
1212

1313
[flake8]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def extra_args(self):
181181
package_data=package_data,
182182
zip_safe=False,
183183
install_requires=[
184-
'celery>=3.1.15',
184+
'celery>=3.1.15,<4.0',
185185
'django>=1.8',
186186
],
187187
cmdclass={'test': RunTests,

0 commit comments

Comments
 (0)