From be80c368161eeace47d93eb9908ddda1aacf3b86 Mon Sep 17 00:00:00 2001 From: Ethan Smith Date: Sun, 28 May 2017 23:30:54 -0700 Subject: [PATCH] fix mypy_selftest (#1369) Related to python/mypy#3337. --- tests/mypy_selftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/mypy_selftest.py b/tests/mypy_selftest.py index 3dc3928e2..4ee98f72b 100755 --- a/tests/mypy_selftest.py +++ b/tests/mypy_selftest.py @@ -11,6 +11,7 @@ import tempfile if __name__ == '__main__': with tempfile.TemporaryDirectory() as tempdir: dirpath = Path(tempdir) + subprocess.run(['python2.7', '-m', 'pip', 'install', '--user', 'typing'], check=True) subprocess.run(['git', 'clone', '--depth', '1', 'git://github.com/python/mypy', str(dirpath / 'mypy')], check=True) subprocess.run([sys.executable, '-m', 'pip', 'install', '-U', '-r',