From 7896a9a3d7d1c6f6fcb6c798d563ad7fc1a05007 Mon Sep 17 00:00:00 2001 From: Andrey Kislyuk Date: Sat, 9 Dec 2023 19:26:25 -0800 Subject: [PATCH] Enable CI on 3.12 --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fdc7c41..a62fdcb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,10 @@ jobs: strategy: max-parallel: 8 matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: ${{matrix.python-version}} @@ -22,8 +22,10 @@ jobs: black: runs-on: ubuntu-22.04 steps: + - uses: actions/checkout@v4 - uses: psf/black@stable isort: runs-on: ubuntu-22.04 steps: + - uses: actions/checkout@v4 - uses: isort/isort-action@v1.1.0