Skip to content

Commit 55025bc

Browse files
committed
drop mypy from the Python 3.8 configuration
1 parent 5df6c58 commit 55025bc

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/ci-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
py-ver-major: [3]
2525
py-ver-minor: [8, 9, 10, 11, 12, 13]
2626
step: [lint, unit, mypy, bandit]
27+
exclude:
28+
- step: mypy
29+
py-ver-minor: 8
2730

2831
env:
2932
py-semver: ${{ format('{0}.{1}', matrix.py-ver-major, matrix.py-ver-minor) }}

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ envlist =
33
py3{8,9,10,11,12,13}-lint,
44
py3{8,9,10,11,12,13}-unit,
55
py3{8,9,10,11,12,13}-bandit,
6-
py3{8,9,10,11,12,13}-mypy,
6+
py3{9,10,11,12,13}-mypy,
77
py312-lintreadme,
88
py312-pydocstyle
99

@@ -32,7 +32,7 @@ description =
3232
py3{8,9,10,11,12,13}-unit: Run the unit tests
3333
py3{8,9,10,11,12,13}-lint: Lint the Python code
3434
py3{8,9,10,11,12,13}-bandit: Search for common security issues
35-
py3{8,9,10,11,12,13}-mypy: Check for type safety
35+
py3{9,10,11,12,13}-mypy: Check for type safety
3636
py312-pydocstyle: docstring style checker
3737
py312-lintreadme: Lint the README.rst->.md conversion
3838

@@ -46,7 +46,7 @@ deps =
4646
py3{8,9,10,11,12,13}-lint: flake8-bugbear
4747
py3{8,9,10,11,12,13}-lint: black~=23.1
4848
py3{8,9,10,11,12,13}-bandit: bandit
49-
py3{8,9,10,11,12,13}-mypy: -rmypy-requirements.txt
49+
py3{9,10,11,12,13}-mypy: -rmypy-requirements.txt
5050

5151
set_env =
5252
py3{8,3,10,11,12,13}-unit: LC_ALL = C.UTF-8
@@ -61,7 +61,7 @@ commands =
6161
py3{8,9,10,11,12,13}-bandit: bandit --recursive cwltest
6262
py3{8,9,10,11,12,13}-lint: make flake8
6363
py3{8,9,10,11,12,13}-lint: make format-check
64-
py3{8,9,10,11,12,13}-mypy: make mypy
64+
py3{9,10,11,12,13}-mypy: make mypy
6565

6666
allowlist_externals =
6767
py3{8,9,10,11,12,13}-lint: flake8

0 commit comments

Comments
 (0)