From 1f5f16aa77e8f4e91896a438e679b246c484ea34 Mon Sep 17 00:00:00 2001 From: Zsolt Dollenstein Date: Wed, 17 Aug 2022 15:00:48 +0200 Subject: [PATCH] Skip CI checks on Python 3.11 x Windows (#752) There are no available binary wheels for lxml for Windows & Python 3.11 yet: https://bugs.launchpad.net/lxml/+bug/1977998 Until that's resolved, let's skip tests in this configuration. --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f3fed69..ea3e393d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,10 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] python-version: [3.7, 3.8, 3.9, "3.10", "3.11.0-alpha - 3.11"] parser: [pure, native] + exclude: + # skip these builds until https://bugs.launchpad.net/lxml/+bug/1977998 is resolved + - os: windows-latest + python-version: "3.11.0-alpha - 3.11" steps: - uses: actions/checkout@v1 - uses: actions/setup-python@v2