From 404ab08a92391717a8dde14da596901824b9146b Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 6 Jul 2022 03:31:14 +0200 Subject: [PATCH] pytest: drop test against py <3.8 since the bump to ansible-core 2.12, we have to drop testing against py36 and py37 given that ansible 2.12 requires python >=3.8 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..509a10163 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, 3.9] name: Python ${{ matrix.python-version }} steps: - uses: actions/checkout@v2