From 5a0fa5a44487fecaa3a2b7c25b9c4559a61c47a7 Mon Sep 17 00:00:00 2001 From: Sebastiaan Huber Date: Thu, 13 Jan 2022 15:38:48 +0100 Subject: [PATCH] Dependencies: add upper limit for `pytest-asyncio` The just released version v0.17 of `pytest-asyncio` causes the async tests in `tests/engine/test_utils.py` to fail. For now we are putting an upper limit on the requirement until a proper solution is found. --- setup.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.json b/setup.json index 90b257ccf5..baa8c5baef 100644 --- a/setup.json +++ b/setup.json @@ -110,7 +110,7 @@ "pg8000~=1.13", "pgtest~=1.3,>=1.3.1", "pytest~=6.2", - "pytest-asyncio~=0.12", + "pytest-asyncio~=0.12,<0.17", "pytest-timeout~=1.3", "pytest-cov~=2.7,<2.11", "pytest-rerunfailures~=9.1,>=9.1.1",