summaryrefslogtreecommitdiffstats
path: root/GUI/package.ps1
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2023-01-23 14:55:36 -0800
committeryum <yum.food.vr@gmail.com>2023-01-23 14:55:36 -0800
commit2bfee587d306402708221f2390fb02dedff6caea (patch)
tree13d601928371da9c5004e1bce043ff63905d1274 /GUI/package.ps1
parent9fff496394dcd94c4084694ca96a5e07ab836274 (diff)
Bugfix: Use future 0.18.2 instead of 0.18.3
Whisper doesn't like 0.18.3, so downgrade to the last version.
Diffstat (limited to 'GUI/package.ps1')
-rw-r--r--GUI/package.ps124
1 files changed, 0 insertions, 24 deletions
diff --git a/GUI/package.ps1 b/GUI/package.ps1
index 0fb5486..93bd01c 100644
--- a/GUI/package.ps1
+++ b/GUI/package.ps1
@@ -63,30 +63,6 @@ if (-Not (Test-Path $git_dir)) {
Read-Host -Prompt "Press enter once PortableGit is installed at $pwd\PortableGit"
}
-$future_version = "0.18.3"
-$future_path = "future-$future_version.tar.gz"
-if (-Not (Test-Path $future_path)) {
- # Source: https://pypi.org/project/future/#files
- $FUTURE_0_18_3_URL = "https://files.pythonhosted.org/packages/8f/2e/cf6accf7415237d6faeeebdc7832023c90e0282aa16fd3263db0eb4715ec/future-0.18.3.tar.gz"
- $FUTURE_URL = $FUTURE_0_18_3_URL
- $FUTURE_FILE = $(Split-Path -Path $FUTURE_URL -Leaf)
-
- if (-Not (Test-Path $FUTURE_FILE)) {
- Invoke-WebRequest $FUTURE_URL -OutFile $FUTURE_FILE
- }
- if (-Not (Test-Path Python/Dependencies)) {
- mkdir Python/Dependencies
- }
- if (-Not (Test-Path Python/Dependencies/future-$future_version)) {
- mkdir Python/Dependencies/future-$future_version
- }
- pushd Python/Dependencies >$null
- tar -xvzf ../../$FUTURE_FILE
- popd >$null
-
- echo "Dependencies/future-$future_version" >> Python/python310._pth
-}
-
mkdir $install_dir > $null
mkdir $install_dir/Resources > $null
cp -Recurse ../Animations TaSTT/Resources/Animations