summaryrefslogtreecommitdiff
path: root/winbuild.py
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2017-08-29 19:23:28 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2017-08-29 19:23:28 -0400
commitcbfed0c94ad4558dac4cd3d1f152d11969819316 (patch)
treef6c6a8fc56caa9f7122636b7d230144385f4ca61 /winbuild.py
parent1dbfb4a045af1e43893a936a4e2cc77b6e39c804 (diff)
downloadpycurl-cbfed0c94ad4558dac4cd3d1f152d11969819316.tar.gz
Update python versions, add 3.6 support
Diffstat (limited to 'winbuild.py')
-rw-r--r--winbuild.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/winbuild.py b/winbuild.py
index 7d6725c..acac7f0 100644
--- a/winbuild.py
+++ b/winbuild.py
@@ -35,7 +35,7 @@ nasm_path = 'c:/program files (x86)/nasm'
# where ActiveState Perl is installed, for building 64-bit OpenSSL
activestate_perl_path = r'c:\dev\perl64'
# which versions of python to build against
-python_versions = ['2.6.6', '2.7.10', '3.2.5', '3.3.5', '3.4.3', '3.5.2']
+python_versions = ['2.6.6', '2.7.10', '3.2.5', '3.3.5', '3.4.3', '3.5.4', '3.6.2']
# where pythons are installed
python_path_template = 'c:/dev/%(bitness)s/python%(python_release)s/python'
vc_paths = {
@@ -104,6 +104,7 @@ python_vc_versions = {
'3.3': 'vc10',
'3.4': 'vc10',
'3.5': 'vc14',
+ '3.6': 'vc14',
}
vc_versions = vc_paths.keys()
dir_here = os.path.abspath(os.path.dirname(__file__))