From 09fe6c9ff53b642a040a8b48abf17d40f3d2a1e1 Mon Sep 17 00:00:00 2001 From: Richard Darst Date: Thu, 8 Feb 2024 23:48:33 +0200 Subject: [PATCH] .github/workflows/pytest: Remove old pythons (removed from gh actions) --- .github/workflows/pytest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 7862b80..192d528 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -3,14 +3,14 @@ on: [push, pull_request] jobs: test: - runs-on: ubuntu-20.04 #ubuntu-latest + runs-on: ubuntu-latest strategy: matrix: - python-version: ['2.7', '3.6', '3.7', '3.9', '3.10'] + python-version: ['3.7', '3.9', '3.x'] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies