Skip to content

Commit

Permalink
Restrict flake8 version (#803)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener committed Nov 29, 2022
1 parent 904bdf0 commit 3b3693d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -24,7 +24,8 @@ jobs:
python3 -m venv myenv
source myenv/bin/activate
python -m pip install wheel
python -m pip install flake8 pep8-naming flake8-quotes flake8-bugbear
# Need "flake8<6" due to https://github.com/zheller/flake8-quotes/issues/110
python -m pip install "flake8<6" pep8-naming flake8-quotes flake8-bugbear
python -m flake8 --show-source --statistics "$(basename $GITHUB_REPOSITORY)" test examples setup.py doc/conf.py bin/ && echo "Flake8 found no errors."
pylint:
Expand Down

0 comments on commit 3b3693d

Please sign in to comment.