From cd8c536816c80ef331369cc6485f849e41afeb55 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Thu, 13 Nov 2025 19:57:39 +0300 Subject: [PATCH] CI(GHActions): Exclude Python 2.7 on Windows --- .github/workflows/run-tests.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 54b9baf..541e95b 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 -- 2.39.5