diff setup.py @ 8437:0060db8a7dd5 stable

setup: exclude celery 4.4.4 which is broken due to unexpressed dependency Celery 4.4.4 introduced the use of the 'future' package but forgot to express it in its dependencies. We could add the missing dependency on 'future' in Kallithea, but since the problem is already fixed upstream shortly after 4.4.4 was released [1], we can be sure that the next release (presumably 4.4.5) will contain the fix. [1] https://github.com/celery/celery/pull/6146
author Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
date Thu, 04 Jun 2020 20:56:36 +0200
parents e3a3fae57343
children 3a02b678b5e7
line wrap: on
line diff
--- a/setup.py	Sat May 23 20:35:45 2020 +0200
+++ b/setup.py	Thu Jun 04 20:56:36 2020 +0200
@@ -55,7 +55,7 @@
     "Mako >= 0.9.1, < 1.2",
     "Pygments >= 2.2.0, < 2.6",
     "Whoosh >= 2.7.1, < 2.8",
-    "celery >= 4.3, < 4.5",
+    "celery >= 4.3, < 4.5, != 4.4.4", # 4.4.4 is broken due to unexpressed dependency on 'future', see https://github.com/celery/celery/pull/6146
     "Babel >= 1.3, < 2.9",
     "python-dateutil >= 2.1.0, < 2.9",
     "Markdown >= 2.2.1, < 3.2",