Skip to content

Commit ba5fe8c

Browse files
ci(arq): Only pin fakeredis<2.36.0 in tests (#6444)
1 parent bd42f78 commit ba5fe8c

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

scripts/populate_tox/config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@
3535
"arq": {
3636
"package": "arq",
3737
"deps": {
38-
"*": ["async-timeout", "pytest-asyncio", "fakeredis>=2.2.0,<2.8"],
38+
"*": ["async-timeout", "pytest-asyncio", "fakeredis"],
3939
"<=0.23": ["pydantic<2"],
40+
# https://github.com/cunla/fakeredis-py/issues/490
41+
"py3.6,py3.7,py3.8": ["fakeredis<2.36.0"],
4042
},
4143
"num_versions": 2,
4244
},

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,8 +718,9 @@ deps =
718718
arq-latest: arq==0.28.0
719719
arq: async-timeout
720720
arq: pytest-asyncio
721-
arq: fakeredis>=2.2.0,<2.8
721+
arq: fakeredis
722722
arq-v0.23: pydantic<2
723+
{py3.6,py3.7,py3.8}-arq: fakeredis<2.36.0
723724

724725
beam-v2.14.0: apache-beam==2.14.0
725726
beam-v2.73.0: apache-beam==2.73.0

0 commit comments

Comments
 (0)