From fb8f495582f68d8d49f57b42d12a66802f9ac238 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 25 Oct 2022 15:34:30 -0700 Subject: [PATCH] Skip macOS 3.11 test when publishing Refs #505 --- .github/workflows/publish.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f3627d3..424e7ff 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,6 +11,10 @@ jobs: matrix: python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] os: [ubuntu-latest, windows-latest, macos-latest] + exclude: + # https://github.com/actions/setup-python/issues/531 + - os: macos-latest + python-version: "3.11" steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }}