From ecbad03c491587ffceec0a6b1196195234986017 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Wed, 5 Mar 2025 20:38:28 +0100 Subject: [PATCH] [workflows:tests] run on ubuntu-22.04 > Ubuntu 20.04 LTS runner will be removed on 2025-04-01 --- .github/workflows/tests.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c88dde73..f633230f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,13 +12,11 @@ on: jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: fail-fast: false matrix: python-version: - - "3.5" - - "3.6" - "3.7" - "3.8" - "3.9" @@ -39,8 +37,6 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - env: - PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org" - name: Install dependencies run: |