👷 CI: 严格约束 test_depend CPython 版本范围 (#3713)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
StarHeart
2025-10-08 20:45:52 +08:00
committed by GitHub
parent f0bc69bd36
commit 6c130cb45f
5 changed files with 33 additions and 31 deletions

View File

@@ -43,7 +43,7 @@ UNKNOWN_PARAM = "Unknown parameter"
@pytest.mark.anyio
@pytest.mark.xfail(
(3, 13) <= sys.version_info < (3, 14),
((3, 13) <= sys.version_info < (3, 13, 8)) or (3, 14) <= sys.version_info,
reason="CPython Bug, see python/cpython#137317, python/cpython#137862",
)
async def test_depend(app: App):