From f423e647edfda25e8f3cdcdaa19fa0fc3ef6febe Mon Sep 17 00:00:00 2001 From: francisco souza <108725+fsouza@users.noreply.github.com> Date: Mon, 24 Oct 2022 16:27:43 -0400 Subject: [PATCH] Enable Python 3.11 in CI Not available in macOS just yet (see actions/setup-python#531), so let's go with just Windows and Ubuntu for now. --- .github/workflows/main.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index b8c75bd..ac60670 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -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: