From 0744cd14a182e7ff33313ea80e4aed22c9e12f55 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 13 Jul 2020 17:38:01 +0200 Subject: [PATCH] Try using Python 3 for codespell Running it using Python 2 seems to result in a problem with not matching an exclusion line with non-ASCII character, which works fine with Python 3 locally. --- .github/workflows/code_checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code_checks.yml b/.github/workflows/code_checks.yml index 94eedcdc5f..d3852768e0 100644 --- a/.github/workflows/code_checks.yml +++ b/.github/workflows/code_checks.yml @@ -36,7 +36,7 @@ jobs: - name: Install codespell run: | - pip install --no-warn-script-location codespell==1.17.1 + pip3 install --no-warn-script-location codespell==1.17.1 - name: Run codespell run: |