From 6866ed43c22868ef4cadf49f0593d91cdc9c4065 Mon Sep 17 00:00:00 2001 From: Stanislav Filin Date: Thu, 13 Jul 2023 17:28:21 +0200 Subject: [PATCH] ci: remove Python 2.7.18 since the setup-python action dropped it (#726) Since Python 2.7 is no longer supported and the specific version 2.7.18 was not found I removed it from the python-versions list. --- .github/workflows/action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index d3e12084..a88812fc 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -34,7 +34,10 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: 3.9 - uses: ./ with: - python-versions: "2.7.18, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, pypy-2.7, pypy-3.7, pypy-3.8, pypy-3.9-v7.3.9" + python-versions: "3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, pypy-2.7, pypy-3.7, pypy-3.8, pypy-3.9-v7.3.9" - run: nox --non-interactive --error-on-missing-interpreter --session github_actions_all_tests