From: Oleg Broytman Date: Fri, 28 Nov 2025 22:44:43 +0000 (+0300) Subject: CI(GHActions): Exclude Python 2.7 on Windows X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=7a7ab2b73c6550e45a6892714a417a15516afb39;p=m_librarian.git CI(GHActions): Exclude Python 2.7 on Windows Mini-conda has problems with this combination. --- diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 8f637c6..d9b174c 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -11,6 +11,9 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] + exclude: + - os: windows-latest + python-version: "2.7" include: - os: ubuntu-latest os-name: Linux