feat: initial cpython 3.12 support (#207)

This commit is contained in:
J. Nick Koston
2023-07-24 10:51:22 -05:00
committed by GitHub
parent a3e0a6250e
commit c755193ee0
6 changed files with 13 additions and 9 deletions

View File

@@ -71,7 +71,7 @@ async def test_name_requests():
@pytest.mark.skipif(
sys.version_info[:3][1] in (10, 11), reason="segfaults on py3.10,py3.11"
sys.version_info[:3][1] in (10, 11, 12), reason="segfaults on py3.10,py3.11,py3.12"
)
@pytest.mark.skipif(not has_gi, reason=skip_reason_no_gi)
def test_request_name_glib():