Skip to content

Commit

Permalink
Merge pull request #98 from gforcada/drop-mypy
Browse files Browse the repository at this point in the history
Drop mypy
  • Loading branch information
gforcada authored Dec 19, 2022
2 parents 09354a2 + 795672d commit 1fe5f6e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 15 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,6 @@ jobs:
- name: Lint with flake8
if: matrix.python-version == '3.9'
run: flake8 *.py --count --max-complexity=18 --max-line-length=88 --show-source --statistics
- name: Lint with mypy
if: matrix.python-version == '3.9'
run: |
mkdir --parents --verbose .mypy_cache
mypy --ignore-missing-imports --install-types --non-interactive *.py || true
# tests and coverage
- name: Test
run: pytest run_tests.py --cov --cov-report term-missing
Expand Down
3 changes: 1 addition & 2 deletions requirements-lint.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ flake8-quotes
flake8-todo
importlib-metadata; python_version < '3.8'
isort
mypy
pytest
pytest-cov
pyupgrade
typed-ast; python_version < '3.8' # dependency of black and mypy
typed-ast; python_version < '3.8' # dependency of black
zipp; python_version < '3.8' # dependency of importlib-metadata
9 changes: 1 addition & 8 deletions requirements-lint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,8 @@ isort==5.10.1
# flake8-isort
mccabe==0.7.0
# via flake8
mypy==0.982
# via -r requirements-lint.in
mypy-extensions==0.4.3
# via
# black
# mypy
# via black
packaging==21.3
# via pytest
pathspec==0.10.1
Expand Down Expand Up @@ -131,19 +127,16 @@ tomli==2.0.1
# via
# black
# coverage
# mypy
# pytest
typed-ast==1.5.4 ; python_version < "3.8"
# via
# -r requirements-lint.in
# black
# mypy
typing-extensions==4.4.0
# via
# black
# gitpython
# importlib-metadata
# mypy
urllib3==1.26.12
# via requests
zipp==3.10.0 ; python_version < "3.8"
Expand Down

0 comments on commit 1fe5f6e

Please sign in to comment.