From d8c1343a3a963139868ec5e090d191a201ba1671 Mon Sep 17 00:00:00 2001 From: yum Date: Tue, 28 Mar 2023 16:07:20 -0700 Subject: Vendor pip and future This dependency fails to install with the embedded python, so now it's vendored. Installing pip after wheel would result in wheel reinstalling, so we also vendor pip. --- GUI/package.ps1 | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'GUI') diff --git a/GUI/package.ps1 b/GUI/package.ps1 index 5f15259..7e0eace 100644 --- a/GUI/package.ps1 +++ b/GUI/package.ps1 @@ -32,6 +32,12 @@ if (-Not (Test-Path $py_dir)) { echo "../Scripts" >> Python/python310._pth echo "import site" >> Python/python310._pth + + ./Python/python.exe Python/get-pip.py + + echo "Installing future" + echo "Assuming host has python 3.10.9 installed" # TODO test for this + python -m pip install future==0.18.2 --target Python/Lib/site-packages } $pip_path = "$py_dir/get-pip.py" -- cgit v1.2.3