From 6e2c9c00bb09f4ecc57cfa55ae9abfcb15bcb2b0 Mon Sep 17 00:00:00 2001 From: Dominik Gresch Date: Thu, 5 Dec 2024 15:53:25 +0100 Subject: [PATCH] Use Python 3.12 in code style checks --- .github/workflows/ci_cd.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 2ebc49cbb..46ac9ecf5 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -32,7 +32,10 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: ${{ env.MAIN_PYTHON_VERSION }} + # TODO: switch back to using ${{ env.MAIN_PYTHON_VERSION }} + # once https://github.com/pylint-dev/pylint/issues/10000#issuecomment-2519899671 + # is resolved. + python-version: "3.12" - name: Install dependencies run: | python -m pip install --upgrade pip tox