From 99383a482b0b19085c6fe1a8465f659d92e892d3 Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Fri, 2 Jul 2021 18:56:54 +0200 Subject: [PATCH] allow celery 5 since it is pulled in by celery-beat This commit is so that celery 5 can be tested --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5c9b37eb..3e358266 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ install_requires = [ 'packaging>=20.1,<21', 'redis>=3.3.1,<4.0.0', - 'celery>=4.3.0,<5.0.0,!=4.4.4', # 4.4.4 is missing a dependency + 'celery>=4.3.0,<6.0.0,!=4.4.4', # 4.4.4 is missing a dependency 'celery_once>=2.0.1', 'django>=3.1.1,<4.0.0',