From 8d1bb624deedc94113ceb75f7681335c390306cc Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Sun, 18 Dec 2022 14:42:06 +0100 Subject: [PATCH] CI: remove python 3.6 on Windows due to lxml issues --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1a1c67b..dccc779 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -73,7 +73,9 @@ jobs: # lxml support for windows/python3.11 still missing (Dec 2022) # https://github.com/lxml/lxml/pull/360 # python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + # python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + # disable python 3.6 on windows due to lxml / bs4 problems on Github Actions + python-version: ["3.7", "3.8", "3.9", "3.10"] steps: - uses: "actions/checkout@v3"