Skip to content

Commit 2e4c925

Browse files
authored
chore: Remove code for building wheel in favor of CI deployments (#165)
This removes the call to build a FIREWHEEL package source distribution from the install script. This should no longer be necessary now that FIREWHEEL is either installed directly from PyPI or via an editable install. For applications where building a source distribution is necessary (e.g., publishing to PyPI), that process should be handled elsewhere—such as in CI job or in a local build workflow.
1 parent b3f6210 commit 2e4c925

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

install.sh

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -194,30 +194,6 @@ function check_deps() {
194194
fi
195195
}
196196

197-
#######################################
198-
# Basic setup for upgrading the virtual envionment tools and
199-
# building the FIREWHEEL whl file.
200-
# Arguments:
201-
# None
202-
# Globals:
203-
# PIP_ARGS
204-
# PYTHON_BIN
205-
#######################################
206-
function install_firewheel_generic() {
207-
if ! ${PYTHON_BIN} -m pip install ${PIP_ARGS} build; then
208-
err "FIREWHEEL setup failed to pip install 'build'."
209-
err "Consult the pip error logs, and verify network connectivity. Aborting."
210-
exit 1
211-
fi
212-
213-
if ! ${PYTHON_BIN} -m build; then
214-
err "FIREWHEEL setup failed to build the source distribution and wheel."
215-
err "Consult the error logs, and verify network connectivity. Aborting."
216-
exit 1
217-
fi
218-
219-
}
220-
221197
#######################################
222198
# Installing the FIREWHEEL package with standard dependencies.
223199
# Arguments:
@@ -251,7 +227,6 @@ function install_firewheel() {
251227
#######################################
252228
function install_firewheel_development() {
253229
local clone="$1"
254-
install_firewheel_generic
255230

256231
# Install the development version.
257232
if [[ $clone -eq 0 ]]; then

0 commit comments

Comments
 (0)