From bcb2185f756454cfbe150b6732ed0212725fff5b Mon Sep 17 00:00:00 2001 From: rlaphoenix Date: Wed, 6 Dec 2023 15:29:59 +0000 Subject: [PATCH] Add Python 3.12 to CI/CD workflows --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 65088cb..5086856 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.11.x" + python-version: "3.12" - name: Install Poetry uses: abatilo/actions-poetry@v2 with: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ac23d2..c7bd518 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.12" - name: Install poetry uses: abatilo/actions-poetry@v2 with: @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }}