Skip to content

Commit 74c1df8

Browse files
authored
fix(ci): pin celery (#2593)
* fix(ci): pin celery Latest celery appears to be broken until celery/celery#6829 is resolved. * Disable other latest * Get the versions right
1 parent 8fbe2b9 commit 74c1df8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

riotfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,9 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION):
358358
},
359359
pkgs={
360360
"celery": [
361-
"~=5.0.5",
361+
# Pin until https://github.com/celery/celery/issues/6829 is resolved.
362+
# "~=5.0.5",
363+
"==5.0.5",
362364
"~=5.0", # most recent 5.x
363365
latest,
364366
],

0 commit comments

Comments
 (0)