From 46e719fda34fe1365bed7260b6e50df741063060 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 15 Jun 2022 08:41:55 +0200 Subject: [PATCH] workflows: drop py36, py37 from pytest no need to have a such matrix, let's test against py38 only. Signed-off-by: Guillaume Abrioux --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 91e9f4ccb..1879fbd31 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.8] name: Python ${{ matrix.python-version }} steps: - uses: actions/checkout@v2 -- 2.47.3