From a9e088ae6c6e869e0799db5e831ff0223ac64a87 Mon Sep 17 00:00:00 2001 From: Alyetama <56323389+Alyetama@users.noreply.github.com> Date: Wed, 19 Jun 2024 10:09:10 -0400 Subject: [PATCH] exclude py3.7 for macos arm64 --- .github/workflows/poetry-build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/poetry-build.yml b/.github/workflows/poetry-build.yml index 933469f..7629034 100644 --- a/.github/workflows/poetry-build.yml +++ b/.github/workflows/poetry-build.yml @@ -11,6 +11,9 @@ jobs: python-version: [3.7, 3.8, 3.9, '3.10', '3.11'] poetry-version: [1.1.13] os: [ubuntu-latest, macos-latest, windows-latest] + exclude: + - python-version: 3.7 + os: macos-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4