Skip to content

Commit

Permalink
Make GitHub Actions cover oldest and youngest Pythons alive
Browse files Browse the repository at this point in the history
For an overview of Pythons alive:
https://endoflife.date/python
  • Loading branch information
hartwork authored and jrfonseca committed Jun 6, 2024
1 parent 1d86603 commit fec2e0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
python-version: ['3.8', '3.12'] # oldest and youngest Pythons alive
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testOnly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
python-version: ['3.8', '3.12'] # oldest and youngest Pythons alive
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit fec2e0a

Please sign in to comment.