This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a commit to branch v2-8-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit be0fb8b11c48568f6cf86558e18cdc21296d6e98
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon Dec 4 06:17:39 2023 +0100

    Limit pytest-asyncio even more - to <0.23.0 (#36040)
    
    Seems that the pytest-asyncio problem was already introduced by
    0.23.0. In order to allow tests passing now, we should limit it
    to below that version (follow up after #36037)
    
    (cherry picked from commit cc2521cf6c01363f0e1c96bbd6ed0231406ecd63)
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index ecd7167fb6..b3c5c0b0a5 100644
--- a/setup.py
+++ b/setup.py
@@ -486,7 +486,7 @@ _devel_only_tests = [
     "pytest>=7.1",
     # Pytest-asyncio 0.23.1 breaks our tests. The limitation should be removed 
when the issue is fixed:
     # https://github.com/pytest-dev/pytest-asyncio/issues/703
-    "pytest-asyncio<0.23.1",
+    "pytest-asyncio<0.23.0",
     "pytest-cov",
     "pytest-httpx",
     "pytest-icdiff",

Reply via email to