diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-12-10 18:17:44 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-12-10 18:17:44 +0100 |
commit | 59eb016dff3fd4f764cfe326c80a9b840f0e1a02 (patch) | |
tree | 31f061ac7c7af9533c082c71fd97bddaeef8588b /src/Make_mvc.mak | |
parent | 74240d3febd1e3bc7cf086c647c9348b20716c33 (diff) | |
download | vim-git-59eb016dff3fd4f764cfe326c80a9b840f0e1a02.tar.gz |
patch 8.0.1385: Python 3.5 is getting oldv8.0.1385
Problem: Python 3.5 is getting old.
Solution: Make Python 3.6 the default. (Ken Takata, closes #2429)
Diffstat (limited to 'src/Make_mvc.mak')
-rw-r--r-- | src/Make_mvc.mak | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak index 9c885b9e1..5a656987b 100644 --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -67,7 +67,7 @@ # Python3 interface: # PYTHON3=[Path to Python3 directory] # DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically) -# PYTHON3_VER=[Python3 version, eg 30, 31] (default is 35) +# PYTHON3_VER=[Python3 version, eg 30, 31] (default is 36) # # Ruby interface: # RUBY=[Path to Ruby directory] @@ -906,7 +906,7 @@ PYTHON_LIB = $(PYTHON)\libs\python$(PYTHON_VER).lib # PYTHON3 interface !ifdef PYTHON3 !ifndef PYTHON3_VER -PYTHON3_VER = 35 +PYTHON3_VER = 36 !endif !message Python3 requested (version $(PYTHON3_VER)) - root dir is "$(PYTHON3)" !if "$(DYNAMIC_PYTHON3)" == "yes" |