From fa4bd8034dff80f4394c683f41205e937674d525 Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Sat, 22 Aug 2020 17:44:06 -0700 Subject: [PATCH] windows: add python3.dll to distribution For parity with the official distributions. Closes #55. --- cpython-windows/build.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cpython-windows/build.py b/cpython-windows/build.py index 71531156..fcfb6b11 100644 --- a/cpython-windows/build.py +++ b/cpython-windows/build.py @@ -2019,9 +2019,7 @@ def build_cpython( if static: args.append("--flat-dlls") else: - args.extend( - ["--include-idle", "--include-tcltk",] - ) + args.extend(["--include-idle", "--include-stable", "--include-tcltk"]) exec_and_log( args, pcbuild_path, os.environ,