aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/lint_mypy.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/lint_mypy.yml b/.github/workflows/lint_mypy.yml
index c826729..7afee2e 100644
--- a/.github/workflows/lint_mypy.yml
+++ b/.github/workflows/lint_mypy.yml
@@ -19,7 +19,8 @@ jobs:
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- - run: python -m pip install pylint
+ # pylint version constraint can be removed when https://github.com/PyCQA/pylint/issues/3524 is resolved
+ - run: python -m pip install pylint==2.4.4
- run: pylint mesonbuild
mypy: