also test 3.7 with mypy (#1917)

This commit is contained in:
Jelle Zijlstra
2018-02-24 09:56:35 -08:00
committed by GitHub
parent f5b3979b70
commit ab72267669

View File

@@ -90,7 +90,7 @@ def main():
print("Cannot import mypy. Did you install it?")
sys.exit(1)
versions = [(3, 6), (3, 5), (3, 4), (3, 3), (2, 7)]
versions = [(3, 7), (3, 6), (3, 5), (3, 4), (3, 3), (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)]