From 09eb3390bc26fe5f17b57826cb2bc868c5c2d38c Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 24 Jul 2024 16:43:29 +0300 Subject: [PATCH] CI(GHActions): Exclude Python 2.7 at w32 It requires VC9 and cannot be installed. --- .github/workflows/run-tests.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 05003cf..fcbb44d 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -11,7 +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.9[build=*_pypy]"] - + exclude: + - os: windows-latest + python-version: "2.7" include: - os: ubuntu-latest os-name: Linux -- 2.39.5