diff options
-rw-r--r-- | .github/workflows/python.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index dc41318e..fe2c7e59 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -28,7 +28,9 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt + # We need to ignore PyLint because we can't install the one we need for + # Python 2.7 and 3.5 + pip install -r <(grep -v pylint requirements.txt) - name: Flake8 and test run: | make test_flake8 test_doctest test_other |