comparison 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
comparison
equal deleted inserted replaced
8436:68861940ee1e 8437:0060db8a7dd5
53 "FormEncode >= 1.3.1, < 1.4", 53 "FormEncode >= 1.3.1, < 1.4",
54 "SQLAlchemy >= 1.2.9, < 1.4", 54 "SQLAlchemy >= 1.2.9, < 1.4",
55 "Mako >= 0.9.1, < 1.2", 55 "Mako >= 0.9.1, < 1.2",
56 "Pygments >= 2.2.0, < 2.6", 56 "Pygments >= 2.2.0, < 2.6",
57 "Whoosh >= 2.7.1, < 2.8", 57 "Whoosh >= 2.7.1, < 2.8",
58 "celery >= 4.3, < 4.5", 58 "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
59 "Babel >= 1.3, < 2.9", 59 "Babel >= 1.3, < 2.9",
60 "python-dateutil >= 2.1.0, < 2.9", 60 "python-dateutil >= 2.1.0, < 2.9",
61 "Markdown >= 2.2.1, < 3.2", 61 "Markdown >= 2.2.1, < 3.2",
62 "docutils >= 0.11, < 0.17", 62 "docutils >= 0.11, < 0.17",
63 "URLObject >= 2.3.4, < 2.5", 63 "URLObject >= 2.3.4, < 2.5",