From 6d90794828fc9cfff6ec14985814165ef385a018 Mon Sep 17 00:00:00 2001 From: Mitch Negus Date: Mon, 24 Mar 2025 18:51:24 -0600 Subject: [PATCH] chore: Remove code for building wheel in favor of CI deployments --- install.sh | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/install.sh b/install.sh index aacbf32e..3d0cc536 100755 --- a/install.sh +++ b/install.sh @@ -194,30 +194,6 @@ function check_deps() { fi } -####################################### -# Basic setup for upgrading the virtual envionment tools and -# building the FIREWHEEL whl file. -# Arguments: -# None -# Globals: -# PIP_ARGS -# PYTHON_BIN -####################################### -function install_firewheel_generic() { - if ! ${PYTHON_BIN} -m pip install ${PIP_ARGS} build; then - err "FIREWHEEL setup failed to pip install 'build'." - err "Consult the pip error logs, and verify network connectivity. Aborting." - exit 1 - fi - - if ! ${PYTHON_BIN} -m build; then - err "FIREWHEEL setup failed to build the source distribution and wheel." - err "Consult the error logs, and verify network connectivity. Aborting." - exit 1 - fi - -} - ####################################### # Installing the FIREWHEEL package with standard dependencies. # Arguments: @@ -251,7 +227,6 @@ function install_firewheel() { ####################################### function install_firewheel_development() { local clone="$1" - install_firewheel_generic # Install the development version. if [[ $clone -eq 0 ]]; then