Skip to content

Commit

Permalink
Add Python 3.11 in GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Dumazert authored and jrj-d committed Nov 9, 2023
1 parent bcbdd1c commit 25eb1c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
os: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v3
Expand All @@ -27,7 +27,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
os: ["macOS-latest"]
steps:
- uses: actions/checkout@v3
Expand All @@ -44,9 +44,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# We skip Python 3.7 has Windows needs to rebuild it, but its specs are
# We skip Python 3.7 has Windows needs to rebuild it, but its specs are
# too low to do it...
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11']
os: ["windows-latest"]
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 25eb1c3

Please sign in to comment.