From 541827c78bf6f6c2fc93a49d616c5ef4b18143e8 Mon Sep 17 00:00:00 2001 From: Jakub Stasiak Date: Mon, 8 Jul 2024 00:30:09 +0200 Subject: [PATCH] Enable Python 3.12 in CI (#260) It's been out for a while. The change is needed to make sure we don't become unwillingly incompatible. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff9e31a..560e979 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: [3.8, 3.9, "3.10", "3.11", "pypy3.8", "pypy3.9", "pypy3.10"] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "pypy3.8", "pypy3.9", "pypy3.10"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }}