diff options
author | Steve Dower <steve.dower@python.org> | 2024-11-08 16:09:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-08 16:09:34 (GMT) |
commit | fd5580cd151e07c690e9d7594513be5fa3102a2e (patch) | |
tree | 761d6cf3996084669163335ec39799b1d75439e7 | |
parent | 75ffac296ef24758b7e5bd9316f32a8170ade37f (diff) | |
download | cpython-fd5580cd151e07c690e9d7594513be5fa3102a2e.zip cpython-fd5580cd151e07c690e9d7594513be5fa3102a2e.tar.gz cpython-fd5580cd151e07c690e9d7594513be5fa3102a2e.tar.bz2 |
gh-126497: Add missing venv redirectors to freethreaded installer (GH-126556)
-rw-r--r-- | Misc/NEWS.d/next/Windows/2024-11-07-20-42-31.gh-issue-126497.EARpd-.rst | 2 | ||||
-rw-r--r-- | Tools/msi/freethreaded/freethreaded_files.wxs | 10 |
2 files changed, 8 insertions, 4 deletions
diff --git a/Misc/NEWS.d/next/Windows/2024-11-07-20-42-31.gh-issue-126497.EARpd-.rst b/Misc/NEWS.d/next/Windows/2024-11-07-20-42-31.gh-issue-126497.EARpd-.rst new file mode 100644 index 0000000..c902b9d --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2024-11-07-20-42-31.gh-issue-126497.EARpd-.rst @@ -0,0 +1,2 @@ +Fixes venv failure due to missing redirector executables in experimental +free-threaded installs. diff --git a/Tools/msi/freethreaded/freethreaded_files.wxs b/Tools/msi/freethreaded/freethreaded_files.wxs index 49ecb34..367fd97 100644 --- a/Tools/msi/freethreaded/freethreaded_files.wxs +++ b/Tools/msi/freethreaded/freethreaded_files.wxs @@ -159,11 +159,13 @@ <?endforeach ?> - <Component Id="venvlaunchert_d.pdb" Directory="Lib_venv_scripts_nt__freethreaded" Guid="*"> - <File Name="venvlaunchert_d.pdb" KeyPath="yes" /> + <Component Id="venvlaunchert_d.exe" Directory="Lib_venv_scripts_nt__freethreaded" Guid="*"> + <File Name="venvlaunchert_d.exe" KeyPath="yes" /> + <File Name="venvlaunchert_d.pdb" /> </Component> - <Component Id="venvwlaunchert_d.pdb" Directory="Lib_venv_scripts_nt__freethreaded" Guid="*"> - <File Name="venvwlaunchert_d.pdb" KeyPath="yes" /> + <Component Id="venvwlaunchert_d.exe" Directory="Lib_venv_scripts_nt__freethreaded" Guid="*"> + <File Name="venvwlaunchert_d.exe" KeyPath="yes" /> + <File Name="venvwlaunchert_d.pdb" /> </Component> </ComponentGroup> </Fragment> |