From 4d9e2a254d3185564b2e029efd4d9e3110729d79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Voigt?= Date: Sun, 1 Oct 2023 23:17:11 +0200 Subject: [PATCH] Add tests with Python 3.11 --- .github/workflows/linux-test.yml | 2 +- .github/workflows/macos-test.yml | 2 +- .github/workflows/mypy-test.yml | 2 +- .github/workflows/windows-test.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux-test.yml b/.github/workflows/linux-test.yml index 6e2887b..dfdaf90 100644 --- a/.github/workflows/linux-test.yml +++ b/.github/workflows/linux-test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9, '3.10'] + python-version: [3.8, 3.9, '3.10'. '3.11'] steps: - name: APT Update diff --git a/.github/workflows/macos-test.yml b/.github/workflows/macos-test.yml index af7a4b9..d78e650 100644 --- a/.github/workflows/macos-test.yml +++ b/.github/workflows/macos-test.yml @@ -15,7 +15,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python-version: [3.8, 3.9, '3.10'] + python-version: [3.8, 3.9, '3.10', '3.11'] steps: diff --git a/.github/workflows/mypy-test.yml b/.github/workflows/mypy-test.yml index fab8660..ffa0f2d 100644 --- a/.github/workflows/mypy-test.yml +++ b/.github/workflows/mypy-test.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9, '3.10'] + python-version: [3.8, 3.9, '3.10', '3.11'] steps: - name: APT Update diff --git a/.github/workflows/windows-test.yml b/.github/workflows/windows-test.yml index b0b9abd..7781c54 100644 --- a/.github/workflows/windows-test.yml +++ b/.github/workflows/windows-test.yml @@ -15,7 +15,7 @@ jobs: runs-on: windows-latest strategy: matrix: - python-version: [3.8, 3.9, '3.10'] + python-version: [3.8, 3.9, '3.10', '3.11'] steps: - uses: actions/checkout@v2