Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Build config update #3470

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions scripts/install_python_toolchain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ function linux_patch_sigfpe_handler {

$PIP install --upgrade "pip"
if [[ "$USE_MINIMAL" -eq 1 ]]; then
$PIP install -r scripts/requirements-minimal.txt --prefer-binary --use-feature=2020-resolver
$PIP install -r scripts/requirements-minimal.txt --prefer-binary
else
$PIP install -r scripts/requirements.txt --prefer-binary --use-feature=2020-resolver
$PIP install -r scripts/requirements.txt --prefer-binary
fi

# install pre-commit hooks for git
Expand Down
2 changes: 1 addition & 1 deletion scripts/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ statsmodels==0.9.0; python_version < '3.8'
statsmodels==0.11.1; python_version == '3.8'
statsmodels==0.12.2; python_version == '3.9'

tensorflow==2.0.2; sys_platform == 'darwin' and python_version != '2.7' and python_version != '3.8' and python_version != '3.9'
tensorflow==2.11.0; sys_platform == 'darwin' and python_version != '2.7' and python_version != '3.8' and python_version != '3.9'

UISoup==2.5.7

Expand Down