From 2bfee587d306402708221f2390fb02dedff6caea Mon Sep 17 00:00:00 2001 From: yum Date: Mon, 23 Jan 2023 14:55:36 -0800 Subject: Bugfix: Use future 0.18.2 instead of 0.18.3 Whisper doesn't like 0.18.3, so downgrade to the last version. --- GUI/package.ps1 | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'GUI/package.ps1') 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 -- cgit v1.2.3