Skip to content

Commit

Permalink
ci: remove Python 2.7.18 since the setup-python action dropped it (#726)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
stasfilin committed Jul 13, 2023
1 parent f46e46e commit 6866ed4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6866ed4

Please sign in to comment.