enable mypy_test for python 3.10 (#5341)

* enable mypy_test for python 3.10

* avoid collections.Mapping and collections.MutableMapping, import from typing
This commit is contained in:
Akuli
2021-05-05 00:09:33 +03:00
committed by GitHub
parent 54699d6cca
commit 9f732a128a
4 changed files with 6 additions and 10 deletions

View File

@@ -172,7 +172,7 @@ def main():
print("Cannot import mypy. Did you install it?")
sys.exit(1)
versions = [(3, 9), (3, 8), (3, 7), (3, 6), (2, 7)]
versions = [(3, 10), (3, 9), (3, 8), (3, 7), (3, 6), (2, 7)]
if args.python_version:
versions = [v for v in versions if any(("%d.%d" % v).startswith(av) for av in args.python_version)]
if not versions: