From 14dcd934570d32230908967ba58d82666002a92c Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Tue, 22 Nov 2022 19:53:00 -0500 Subject: [PATCH] Exclude platforms where lxml fails to install. --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 30c4ed3..1c2d2cc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -60,7 +60,9 @@ jobs: # lxml fails to build on Windows # https://bugs.launchpad.net/lxml/+bug/1977998 - platform: windows-latest - python: ~3.11.0-0 + python: "3.11" + # lxml fails to build on Python 3.12 + - python: "3.12" runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v3