From 2e44b43121e52d7d53f5a8be37650ebecca10526 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 9 Oct 2020 10:04:33 -0700 Subject: [PATCH] Add Python 3.9 to the list --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 3bb710d7..dc1f1517 100755 --- a/build.py +++ b/build.py @@ -1524,7 +1524,7 @@ def copyWxDlls(options): # For Python 3.5 and 3.6 builds we also need to copy some VC14 redist DLLs. # NOTE: Do it for 3.7+ too for now. But when we fully switch over to VS 2017 # this may need to change. See notes in wscript about it. - if PYVER in ['3.5', '3.6', '3.7', '3.8']: + if PYVER in ['3.5', '3.6', '3.7', '3.8', '3.9']: redist_dir = os.path.join( phoenixDir(), 'packaging', 'Py3.5', 'vcredist', arch, 'Microsoft.VC140.CRT', '*.dll')