From 529110e7d8c4a6b1bbf5fb61f2e29d72aa95a611 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Wed, 26 Oct 2022 12:27:32 -0700 Subject: [PATCH] GitHub Actions has Python 3.11 on macOS now Refs https://github.com/actions/setup-python/issues/531 --- .github/workflows/publish.yml | 4 ---- .github/workflows/test.yml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 424e7ff..f3627d3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,10 +11,6 @@ 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 }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ba88451..98729c9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,10 +13,6 @@ jobs: python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] numpy: [0, 1] os: [ubuntu-latest, macos-latest, windows-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 }}