From bc4f989e96a441cb7dfbf4b82ca3b1cb253c5a78 Mon Sep 17 00:00:00 2001 From: Jukka Lehtosalo Date: Tue, 7 Feb 2017 17:14:27 +0000 Subject: [PATCH] Default to type checking in Python 3.6 mode Now that 3.6 is out, there's really no need to default to 3.5 any more. Fixes #2836. --- mypy/defaults.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypy/defaults.py b/mypy/defaults.py index d9b67417d8805..b5398f990d11d 100644 --- a/mypy/defaults.py +++ b/mypy/defaults.py @@ -1,4 +1,4 @@ PYTHON2_VERSION = (2, 7) -PYTHON3_VERSION = (3, 5) +PYTHON3_VERSION = (3, 6) CACHE_DIR = '.mypy_cache' CONFIG_FILE = 'mypy.ini'