summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJean Abou-Samra <jean@abou-samra.fr>2022-12-07 21:48:33 +0100
committerGitHub <noreply@github.com>2022-12-07 21:48:33 +0100
commit13d578deaec52ce27d43eee014e88561c58f9aa5 (patch)
treec09daa037e77e1cb43e4a89a6467320da6310bc3 /.github
parent0db531852f848913853929a7af1b0bab44d59f1a (diff)
downloadpygments-git-13d578deaec52ce27d43eee014e88561c58f9aa5.tar.gz
New attempt to add Python 3.11 to CI now that it's released (#2287)
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: