From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 12 Aug 2019 22:16:36 +0000 (-0700) Subject: Remove versioned executables from non-APPX packages (GH-15237) X-Git-Tag: v3.8.0b4~109 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a150feeeb8efe99218e315c93f9ff1f158e18f10;p=python Remove versioned executables from non-APPX packages (GH-15237) (cherry picked from commit c1aeb292d206e12b900dc4f7f816246c3a57c2ac) Co-authored-by: Steve Dower --- diff --git a/PC/layout/main.py b/PC/layout/main.py index 07b7e6d574..e598581962 100644 --- a/PC/layout/main.py +++ b/PC/layout/main.py @@ -159,9 +159,6 @@ def get_layout(ns): yield from in_build("python_uwp.exe", new_name="python") yield from in_build("pythonw_uwp.exe", new_name="pythonw") else: - yield from in_build("python.exe", new_name="python{}".format(VER_DOT)) - yield from in_build("pythonw.exe", new_name="pythonw{}".format(VER_DOT)) - # For backwards compatibility, but we don't reference these ourselves. yield from in_build("python.exe", new_name="python") yield from in_build("pythonw.exe", new_name="pythonw")