Skip to content

Commit 8b62ae4

Browse files
Bruce FenskeBruce Fenske
Bruce Fenske
authored and
Bruce Fenske
committed
Flake8 changes
1 parent 568438f commit 8b62ae4

File tree

6 files changed

+146
-703
lines changed

6 files changed

+146
-703
lines changed

.flake8

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[flake8]
22
max-line-length = 88
33
max-complexity = 10
4-
ignore = W503,E712,E231,E203
4+
ignore = W503,E712,E231,E203,E501,E741,F401,F811,F841
55
exclude =
66
.git,
77
__pycache__,

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
python-version: ['3.x']
20+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
2121
steps:
2222
- uses: actions/checkout@v2
2323
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/prod-cd.yml

+2-2
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.x']
12+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Set up Python ${{ matrix.python-version }}
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
strategy:
3737
matrix:
38-
python-version: ['3.x']
38+
python-version: [3.6]
3939
steps:
4040
- uses: actions/checkout@v2
4141
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/test-cd.yml

+2-2
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.x']
12+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Set up Python ${{ matrix.python-version }}
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
strategy:
3838
matrix:
39-
python-version: ['3.x']
39+
python-version: [3.6]
4040
steps:
4141
- uses: actions/checkout@v2
4242
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)