From 108c11aeb0e7330462c4ee7ac8faab6b72132925 Mon Sep 17 00:00:00 2001 From: Christian Nicolai Date: Thu, 10 Nov 2022 22:34:08 +0100 Subject: [PATCH] ci: support Python 3.11 Also update GHA and Ubuntu. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e053039..5e6d02d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,20 +12,20 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: fail-fast: false matrix: python-version: - '3.7' - - '3.8' - '3.9' - '3.10' + - '3.11' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: python -m pip install --upgrade pip - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install Poetry