Skip to content

Commit 1fe5f6e

Browse files
authored
Merge pull request #98 from gforcada/drop-mypy
Drop mypy
2 parents 09354a2 + 795672d commit 1fe5f6e

File tree

3 files changed

+2
-15
lines changed

3 files changed

+2
-15
lines changed

.github/workflows/testing.yml

-5
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,6 @@ jobs:
5858
- name: Lint with flake8
5959
if: matrix.python-version == '3.9'
6060
run: flake8 *.py --count --max-complexity=18 --max-line-length=88 --show-source --statistics
61-
- name: Lint with mypy
62-
if: matrix.python-version == '3.9'
63-
run: |
64-
mkdir --parents --verbose .mypy_cache
65-
mypy --ignore-missing-imports --install-types --non-interactive *.py || true
6661
# tests and coverage
6762
- name: Test
6863
run: pytest run_tests.py --cov --cov-report term-missing

requirements-lint.in

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ flake8-quotes
1414
flake8-todo
1515
importlib-metadata; python_version < '3.8'
1616
isort
17-
mypy
1817
pytest
1918
pytest-cov
2019
pyupgrade
21-
typed-ast; python_version < '3.8' # dependency of black and mypy
20+
typed-ast; python_version < '3.8' # dependency of black
2221
zipp; python_version < '3.8' # dependency of importlib-metadata

requirements-lint.txt

+1-8
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,8 @@ isort==5.10.1
8383
# flake8-isort
8484
mccabe==0.7.0
8585
# via flake8
86-
mypy==0.982
87-
# via -r requirements-lint.in
8886
mypy-extensions==0.4.3
89-
# via
90-
# black
91-
# mypy
87+
# via black
9288
packaging==21.3
9389
# via pytest
9490
pathspec==0.10.1
@@ -131,19 +127,16 @@ tomli==2.0.1
131127
# via
132128
# black
133129
# coverage
134-
# mypy
135130
# pytest
136131
typed-ast==1.5.4 ; python_version < "3.8"
137132
# via
138133
# -r requirements-lint.in
139134
# black
140-
# mypy
141135
typing-extensions==4.4.0
142136
# via
143137
# black
144138
# gitpython
145139
# importlib-metadata
146-
# mypy
147140
urllib3==1.26.12
148141
# via requests
149142
zipp==3.10.0 ; python_version < "3.8"

0 commit comments

Comments
 (0)