Skip to content

Commit

Permalink
Use ubuntu-22.04 to support Python 3.7-3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
kvid committed Jan 16, 2025
1 parent 336bea8 commit fc40b80
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ jobs:
strategy:
max-parallel: 6
matrix:
os: [ubuntu-latest]
# ubuntu-22.04 is required to support Python 3.7-3.12
# ubuntu-24.04 is better when Python 3.9-3.12 is enough
# More details: /~https://github.com/actions/runner-images/issues/10636
os: [ubuntu-22.04]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
Expand Down

0 comments on commit fc40b80

Please sign in to comment.