Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions make.py
Original file line number Diff line number Diff line change
Expand Up @@ -1136,6 +1136,12 @@ def _create_batch_scripts_initial(self):

:after_pyzo_conf

rem ******************
rem handle dying pipdeptree if included
rem ******************
set tmp_pyz=%WINPYDIR%\Lib\site-packages\pipdeptree.py
if exist "%tmp_pyz%" set _PIP_USE_IMPORTLIB_METADATA=0


rem ******************
rem WinPython.ini part (removed from nsis)
Expand Down Expand Up @@ -1293,6 +1299,16 @@ def _create_batch_scripts_initial(self):
gui = 'none'| Add-Content -Path $env:tmp_pyz
}


#####################
### handle dying pipdeptree if included
#####################
$env:tmp_pyz = "$env:WINPYDIR\Lib\site-packages\pipdeptree.py"
if (Test-Path "$env:tmp_pyz") {
$env:_PIP_USE_IMPORTLIB_METADATA=0
}


#####################
### WinPython.ini part (removed from nsis)
#####################
Expand Down