diff options
author | Devaev Maxim <[email protected]> | 2020-12-02 14:37:48 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-12-02 14:37:48 +0300 |
commit | 2b064a3bee87a13930e1212b583278ff2a8117db (patch) | |
tree | 13aec1649cdda610c3e293386a41698eaaa3ff00 /testenv/linters | |
parent | 9dbf7f1d0ba5639ec5a4a699213660d72a3ba1c4 (diff) |
basic python 3.9 support
Diffstat (limited to 'testenv/linters')
-rw-r--r-- | testenv/linters/mypy.ini | 2 | ||||
-rw-r--r-- | testenv/linters/pylint.ini | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/testenv/linters/mypy.ini b/testenv/linters/mypy.ini index a48e58e7..00dd6881 100644 --- a/testenv/linters/mypy.ini +++ b/testenv/linters/mypy.ini @@ -1,5 +1,5 @@ [mypy] -python_version = 3.8 +python_version = 3.9 ignore_missing_imports = true disallow_untyped_defs = true strict_optional = true diff --git a/testenv/linters/pylint.ini b/testenv/linters/pylint.ini index dff276c6..b2471ffe 100644 --- a/testenv/linters/pylint.ini +++ b/testenv/linters/pylint.ini @@ -34,6 +34,8 @@ disable = len-as-condition, raise-missing-from, consider-using-in, + unsubscriptable-object, +# https://github.com/PyCQA/pylint/issues/3882 [CLASSES] exclude-protected = |