From 3bb4d03571fa78fc89bb7f9759d1f71dcd7c0468 Mon Sep 17 00:00:00 2001 From: Paul Natsuo Kishimoto Date: Tue, 19 Sep 2023 14:44:13 +0200 Subject: [PATCH] Work around https://bugs.launchpad.net/lxml/+bug/2035206 (#494) --- .github/workflows/pytest.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 353109621..cf0d92140 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -96,6 +96,9 @@ jobs: - name: Install Python package and dependencies # [docs] contains [tests], which contains [report,tutorial] run: | + # Work around https://bugs.launchpad.net/lxml/+bug/2035206 + pip install "lxml != 4.9.3" + pip install .[docs] # commented: use with "pandas-version" in the matrix, above