summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yaml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index abd546f1..24f53f70 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -11,7 +11,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
- python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
+ python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
+ # Only run Python 3.11 tests on Ubuntu for now because lxml
+ # doesn't provide Windows wheels at the time of this writing
+ # (https://bugs.launchpad.net/lxml/+bug/1977998).
+ exclude:
+ - os: windows-latest
+ python-version: "3.11"
max-parallel: 4
steps: