Skip to content

Commit

Permalink
Suppress linting on Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
johnthagen committed Jan 13, 2024
1 parent 11e5196 commit 3b2ba60
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
python -m pip install --upgrade pip
python -m pip install -r requirements/tests.txt
python -m pip install -r requirements.txt
- name: Linting
# TODO: Remove this conditional when Python 3.7 is dropped and Flake8 executes on
# all Python versions in matrix.
- if: matrix.python-version == '3.8'
name: Linting
run: flake8
# Environments are selected using tox-gh-actions configuration in tox.ini.
- name: Test with tox
Expand Down

0 comments on commit 3b2ba60

Please sign in to comment.