From 7cf8d1d6961761eab681d49eea7fbafae0889186 Mon Sep 17 00:00:00 2001 From: valeros Date: Mon, 3 Jun 2024 15:06:46 +0300 Subject: [PATCH] Exclude Python 3.6 and 3.7 from CI matrix for MacOS --- .github/workflows/core.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index 1c2380ca..be8632b3 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -11,7 +11,9 @@ jobs: python-version: ["3.6", "3.7", "3.11", "3.12"] exclude: - os: macos-latest - - python-version: ["3.6", "3.7"] + python-version: "3.6" + - os: macos-latest + python-version: "3.7" runs-on: ${{ matrix.os }}