From c9a45a3c50a9a99e365c2ad69b6fbebea15d4792 Mon Sep 17 00:00:00 2001 From: Kyle Verhoog Date: Tue, 29 Jun 2021 10:23:57 -0400 Subject: [PATCH 1/3] fix(ci): pin celery Latest celery appears to be broken until https://github.com/celery/celery/issues/6829 is resolved. --- riotfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riotfile.py b/riotfile.py index c3f806a6697..1a442449092 100644 --- a/riotfile.py +++ b/riotfile.py @@ -360,7 +360,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "celery": [ "~=5.0.5", "~=5.0", # most recent 5.x - latest, + # latest, # Pin until https://github.com/celery/celery/issues/6829 is resolved. ], "redis": "~=3.5", }, From 3ed6db60763ff330f3b9b2e39e220549a57499b8 Mon Sep 17 00:00:00 2001 From: Kyle Verhoog Date: Tue, 29 Jun 2021 10:54:34 -0400 Subject: [PATCH 2/3] Disable other latest --- riotfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riotfile.py b/riotfile.py index 1a442449092..5e5797d42e8 100644 --- a/riotfile.py +++ b/riotfile.py @@ -359,7 +359,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): pkgs={ "celery": [ "~=5.0.5", - "~=5.0", # most recent 5.x + # "~=5.0", # most recent 5.x # latest, # Pin until https://github.com/celery/celery/issues/6829 is resolved. ], "redis": "~=3.5", From 168cadcfecf2b61b273c9ed42a7a48ef43a146c9 Mon Sep 17 00:00:00 2001 From: Kyle Verhoog Date: Tue, 29 Jun 2021 12:03:09 -0400 Subject: [PATCH 3/3] Get the versions right --- riotfile.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/riotfile.py b/riotfile.py index 5e5797d42e8..acbb4452654 100644 --- a/riotfile.py +++ b/riotfile.py @@ -358,9 +358,11 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): }, pkgs={ "celery": [ - "~=5.0.5", - # "~=5.0", # most recent 5.x - # latest, # Pin until https://github.com/celery/celery/issues/6829 is resolved. + # Pin until https://github.com/celery/celery/issues/6829 is resolved. + # "~=5.0.5", + "==5.0.5", + "~=5.0", # most recent 5.x + latest, ], "redis": "~=3.5", },