diff options
-rw-r--r-- | .github/workflows/pylint.yml | 2 | ||||
-rw-r--r-- | requirements.txt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index c15f8f64..474b087f 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -5,10 +5,12 @@ on: paths: - '.github/workflows/pylint.yml' - '**.py' + - 'requirements.txt' pull_request: paths: - '.github/workflows/pylint.yml' - '**.py' + - 'requirements.txt' jobs: test_pylint: diff --git a/requirements.txt b/requirements.txt index fc51e82a..c24c4584 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ flake8 -pylint +pylint==2.13.9 # Newer versions drop the python3 port checker, which we need pytest |