diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 49acc56..d47f4a9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -120,7 +120,7 @@ jobs: - name: Install run: | - pip install flake8 isort black mypy django-stubs dj_database_url types-six types-requests types-mock + pip install flake8 isort black django-stubs dj_database_url types-six types-requests types-mock pip install "django-stubs<1.13.0" # Remove this line once https://github.com/typeddjango/django-stubs/issues/1227 is fixed pip install -r requirements_test.txt python setup.py develop @@ -131,5 +131,3 @@ jobs: run: python -m isort . --check-only --diff - name: Running black run: black --check . - - name: Running mypy - run: mypy . diff --git a/mypy.ini b/mypy.ini deleted file mode 100644 index 1204511..0000000 --- a/mypy.ini +++ /dev/null @@ -1,11 +0,0 @@ -[mypy] -python_version = 3.9 -ignore_missing_imports = True -exclude = /migrations/ -plugins = - mypy_django_plugin.main -disable_error_code = attr-defined, var-annotated, misc - - -[mypy.plugins.django-stubs] -django_settings_module = "example_project.settings"