Skip to content

Commit 5d7c764

Browse files
cclausswang0618
authored andcommitted
Update lint.yml
1 parent 3e80263 commit 5d7c764

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.5", "3.6", "3.7", "3.8", "3.10"]
12+
python-version: ["3.6", "3.7", "3.8", "3.10"]
1313

1414
steps:
1515
- uses: actions/checkout@v2
@@ -26,15 +26,7 @@ jobs:
2626
python -m pip install --upgrade pip
2727
pip install -e ".[all]"
2828
- name: Lint with flake8
29-
if: python-version != "3.5" # f-strings are syntax errors in Python 3.5
3029
run: |
3130
pip install flake8
3231
flake8 --ignore=E126,E127,E128,E131,E226,E231,E302,E303,E305,E401,E402,E701,E731,F401,F403,F405,W291,W292,W293,W391 \
3332
--max-complexity=32 --max-line-length=525 --show-source --statistics .
34-
- name: Lint with flake8 (Python 3.5)
35-
if: python-version !== "3.5" # f-strings are syntax errors in Python 3.5
36-
run: |
37-
pip install flake8
38-
flake8 --ignore=E126,E127,E128,E131,E226,E231,E302,E303,E305,E401,E402,E701,E731,F401,F403,F405,W291,W292,W293,W391 \
39-
--max-complexity=32 --max-line-length=525 --show-source --statistics pywebio
40-

0 commit comments

Comments
 (0)