From 6bd9703755933ac6d7a80c903165f2d8be033cce Mon Sep 17 00:00:00 2001 From: David Steele Date: Sun, 20 Nov 2022 12:46:33 -0500 Subject: [PATCH] Remove python 3.12 alpha from CI tests There is an error, only for this test, complaining of a missing libxml2 and libxlst (because Cython is missing?). It is still early in the 3.12 release process. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ea31b62..d36f5d9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12.0-alpha - 3.12"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] steps: - name: Check out uses: actions/checkout@v2