From d6daed496691f04950c917e635e02533c4d864d0 Mon Sep 17 00:00:00 2001 From: Mateusz Bysiek Date: Mon, 10 Jun 2024 17:19:19 +0900 Subject: [PATCH] build: use macos-13 for older python versions --- .github/workflows/python.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 770d84c..2f7fb78 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -11,19 +11,21 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, windows-latest] python-version: ['3.8', 'pypy3.8', '3.9', 'pypy3.9', '3.10', '3.11'] - exclude: - - os: macos-latest + include: + - os: macos-13 python-version: '3.8' - - os: macos-latest + - os: macos-13 python-version: 'pypy3.8' - - os: macos-latest + - os: macos-13 python-version: '3.9' - - os: macos-latest + - os: macos-13 python-version: 'pypy3.9' - - os: macos-latest + - os: macos-13 python-version: '3.10' + - os: macos-latest + python-version: '3.11' steps: - uses: actions/checkout@v4