Skip to content

Commit

Permalink
Enable Python 3.11 in CI
Browse files Browse the repository at this point in the history
Not available in macOS just yet (see actions/setup-python#531), so let's
go with just Windows and Ubuntu for now.
  • Loading branch information
fsouza committed Oct 25, 2022
1 parent 6a89d1c commit f423e64
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/main.yaml
Expand Up @@ -17,11 +17,18 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
os:
- macos
- ubuntu
- windows

# 3.11 isn't available in macOS yet.
# See https://github.com/actions/setup-python/issues/531.
exclude:
- os: macos
python-version: "3.11"

name: tests
runs-on: ${{ matrix.os }}-latest
steps:
Expand Down

0 comments on commit f423e64

Please sign in to comment.