From 8902868b907b1f9a64886081fcab6a8cee7719b0 Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Wed, 5 May 2021 13:15:29 -0400 Subject: [PATCH] Skip Windows Python 3 for now. --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4644b84c7..1f3d57310 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,6 @@ jobs: matrix: os: - macos-latest - - windows-latest - ubuntu-latest python-version: - 2.7 @@ -27,6 +26,11 @@ jobs: - 3.7 - 3.8 - 3.9 + include: + # For now we're only doing Windows on 2.7, will be fixed in + # https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3701 + - os: windows-latest + python-version: 2.7 steps: