From 210a4ebcbe5571e2c07b34ef95ceb7fd0756d802 Mon Sep 17 00:00:00 2001 From: link2xt Date: Wed, 4 Oct 2023 18:59:20 +0000 Subject: [PATCH] ci: test async python bindings with Python 3.11 --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a27eda396..5228594d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -231,10 +231,14 @@ jobs: fail-fast: false matrix: include: + # Async Python bindings do not depend on Python version, + # but are tested on Python 3.11 until Python 3.12 support + # is added to `aiohttp` dependency: + # https://github.com/aio-libs/aiohttp/issues/7646 - os: ubuntu-latest - python: 3.12 + python: 3.11 - os: macos-latest - python: 3.12 + python: 3.11 # PyPy tests - os: ubuntu-latest