From dca0796aaadfcca76e4026be53430f6207fe3a10 Mon Sep 17 00:00:00 2001 From: Georg Schramm Date: Wed, 15 Jan 2025 12:38:36 +0100 Subject: [PATCH] remove macos checks and some windows checks --- .github/workflows/c_python_build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/c_python_build.yml b/.github/workflows/c_python_build.yml index bdcdaaaa..6d18557b 100644 --- a/.github/workflows/c_python_build.yml +++ b/.github/workflows/c_python_build.yml @@ -26,9 +26,14 @@ jobs: strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-12] # not building on mac-os because there is no OpenMP + os: [ubuntu-latest, windows-latest] # not building on mac-os because there is no OpenMP python-version: [3.9, 3.12] test-env: [test-numpy-1, test-numpy-2] + exclude: + - os: windows-latest + python-version: 3.9 + - os: windows-latest + test-env: test-numpy-1 steps: - uses: actions/checkout@v4