From 1671a90077771649fbd92924e95e1c058f64b7e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 14 Oct 2023 14:48:40 +0200 Subject: [PATCH] use Python 3.12 for GitHub Actions --- .github/workflows/executables.yml | 4 ++-- .github/workflows/tests.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/executables.yml b/.github/workflows/executables.yml index e55ae82a..03251c86 100644 --- a/.github/workflows/executables.yml +++ b/.github/workflows/executables.yml @@ -11,12 +11,12 @@ jobs: matrix: os: ["windows-latest", "macOS-latest"] architecture: ["x64"] - python-version: ["3.11"] + python-version: ["3.12"] python-packages: [""] include: - os: "ubuntu-latest" architecture: "x64" - python-version: "3.11" + python-version: "3.12" python-packages: "secretstorage" - os: "windows-2019" architecture: "x86" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 168edb9b..46539068 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.9"] + python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9"] steps: - uses: actions/checkout@v3