We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2b8331 commit ac1f526Copy full SHA for ac1f526
winpython/disthelpers.py
@@ -119,7 +119,9 @@ def get_msvc_version(python_version):
119
# Python 3.3+ were built with Visual Studio 10.0.30319.1
120
# (i.e. Visual C++ 2010)
121
return '10.0'
122
- else:
+ elif python_version in ('3.5', '3.6'):
123
+ return '15.0'
124
+ else:
125
raise RuntimeError("Unsupported Python version %s" % python_version)
126
127
def get_msvc_dlls(msvc_version, architecture=None):
@@ -134,6 +136,10 @@ def get_msvc_dlls(msvc_version, architecture=None):
134
136
135
137
filelist = []
138
139
+ # simple vs2015 situation: nothing (system dll)
140
+ if msvc_version == '15.0':
141
+ return filelist
142
+
143
msvc_major = msvc_version.split('.')[0]
144
msvc_minor = msvc_version.split('.')[1]
145
0 commit comments