forked from dbkaplan/dry-rest-permissions
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add type hints * Redo mypy testing via tox * Actually use tox in travis build * Fix tox env usage * Add Python 3.9 to tox list * django2.2 -> django2 in tox * Upgrade pytest-django * Django 3.x doesn't support Python 3.5 * Deal with FieldDoesNotExist issues * Explicitly set Python versions * DRF 3.8/3.9 don't work well with Django 3 * Correct flake8/docs names * Fix the multiple django specs * Set deploy job to a TOXENV that still exists * Fix mypy deps in tox * Fix lint issues * Ignore mypy imports for flake8
- Loading branch information
Showing
8 changed files
with
52 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
[wheel] | ||
universal = 1 | ||
|
||
[mypy] | ||
show_error_codes = True | ||
plugins = | ||
mypy_django_plugin.main, | ||
mypy_drf_plugin.main | ||
|
||
[mypy.plugins.django-stubs] | ||
django_settings_module = "tests.settings" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters