From cf4bbe6012d700c1f057ebe0a8ea8294c00abc7f Mon Sep 17 00:00:00 2001 From: Philipp Wolfer Date: Wed, 26 Oct 2022 17:21:07 +0200 Subject: [PATCH] CI: Build and test with Python 3.11 --- .github/workflows/pypi-release.yml | 2 +- .github/workflows/run-tests.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 5ee2ac13c..5344475b2 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -74,7 +74,7 @@ jobs: fail-fast: false matrix: os: [macos-11, windows-2019] - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] exclude: # pyobjc is not yet compatible with Python 3.10 - os: macos-11 diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 795d6d920..3d4abe07a 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [macos-latest, ubuntu-latest, windows-2019] - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] include: - os: macos-11 python-version: '3.7' @@ -89,7 +89,7 @@ jobs: strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest] - python-version: ['3.8'] + python-version: ['3.8', '3.11'] steps: - uses: actions/checkout@v3