From b82836529322f217d3a7ff8f9b28c5cdb24c55bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Chaves?= Date: Thu, 28 Dec 2023 13:50:39 +0100 Subject: [PATCH] Use Python 3.11 for pylint --- .github/workflows/checks.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index d6fc0f6c5..0f1381bd0 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -12,7 +12,9 @@ jobs: fail-fast: false matrix: include: - - python-version: "3.12" + # pylint < 3 is needed due to a bug in later versions affecting us, + # but Python 3.12 was introduced in later versions. + - python-version: "3.11" env: TOXENV: pylint - python-version: 3.8