From 47c7287b8d87a3723ff869f9ae71bdd5df4766da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Thu, 5 May 2022 21:49:01 +0200 Subject: [PATCH] scriptcheck.yml: fixated pygments version and re-enabled all Python versions (#4068) --- .github/workflows/scriptcheck.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scriptcheck.yml b/.github/workflows/scriptcheck.yml index 519452df6..7bfab6ce1 100644 --- a/.github/workflows/scriptcheck.yml +++ b/.github/workflows/scriptcheck.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: [3.5] + python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, '3.10'] fail-fast: false steps: @@ -69,7 +69,8 @@ jobs: python -m pip install pylint python -m pip install unittest2 python -m pip install pytest - python -m pip install pygments + # TODO: remove version limitation when cppcheck-htmlreport is adjusted + python -m pip install pygments==2.11.2 python -m pip install requests python -m pip install psutil