From 5ea57fbe828eb61700165e535dfd274ee4b2ff9e Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 13 Feb 2017 17:14:26 -0800 Subject: [PATCH] Include the MSVC CRT DLLs for Python 3.6 builds too --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 8619bdd9..3bd7fc06 100755 --- a/build.py +++ b/build.py @@ -1270,7 +1270,7 @@ def copyWxDlls(options): dlls += glob.glob(os.path.join(cairo_root, arch, 'bin', '*.dll')) # For Python 3.5 builds we also need to copy some VC14 redist DLLs - if PYVER == '3.5': + if PYVER in ['3.5', '3.6']: redist_dir = os.path.join( phoenixDir(), 'packaging', 'Py3.5', 'vcredist', arch, 'Microsoft.VC140.CRT', '*.dll')