Skip to content

Commit

Permalink
Ensure running py3.6 tests only where it is available
Browse files Browse the repository at this point in the history
Python 3.6 reached its end of life on Dec 12, 2021 and GitHub
actions stopped supporting it on its latest Ubuntu systems (>20.04).
From now, Python3.6 will be tested only on Ubuntu 20.04 (beside
windows-latest and macos-latest).
  • Loading branch information
renatahodovan committed Jan 13, 2023
1 parent 0085021 commit 689c9cc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11', 'pypy-3.7']
exclude:
- python-version: "3.6"
os: ubuntu-latest
include:
- python-version: "3.6"
os: ubuntu-20.04
runs-on: ${{ matrix.os }}
steps:
- run: git config --global core.autocrlf input
Expand Down

0 comments on commit 689c9cc

Please sign in to comment.