From d858c9f676063b4f0302806cf740e1fad886cfc8 Mon Sep 17 00:00:00 2001 From: Neil Shephard Date: Wed, 27 Nov 2024 12:15:42 +0000 Subject: [PATCH] ci: Remove Windows from os matrix of tests.yaml There is no wheel for pysam on the Windows release (see [files](https://pypi.org/project/pysam/#files)) so removing windows from the os matrix of tests. --- .github/workflows/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index e588a37..282e6bb 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -27,7 +27,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: ["ubuntu-latest", "macos-latest", "windows-latest"] + os: ["ubuntu-latest", "macos-latest"] # "windows-latest"] python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4