From dde58b18a577bc488d28f3c53e992babd6ae6239 Mon Sep 17 00:00:00 2001 From: Daniel Adler Date: Wed, 24 Apr 2024 17:12:13 +0200 Subject: [PATCH] gh workflow: exclude python 3.7-.3.9 for macos/arm64 --- .github/workflows/test.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 2801d8d..a7c0ab1 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,7 +11,10 @@ jobs: matrix: os: ["ubuntu", "windows", "macos"] python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] # https://devguide.python.org/versions/#versions - + exclude: + - os: macos + architecture: arm64 + python: ["3.7", "3.8", "3.9"] runs-on: ${{ matrix.os }}-latest steps: