Skip to content

Commit

Permalink
pythongh-126497: Add missing venv redirectors to freethreaded install…
Browse files Browse the repository at this point in the history
…er (pythonGH-126556)

(cherry picked from commit fd5580c)

Co-authored-by: Steve Dower <steve.dower@python.org>
  • Loading branch information
zooba authored and miss-islington committed Nov 8, 2024
1 parent 8ebb6a0 commit 5caba94
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fixes venv failure due to missing redirector executables in experimental
free-threaded installs.
10 changes: 6 additions & 4 deletions Tools/msi/freethreaded/freethreaded_files.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 5caba94

Please sign in to comment.