Skip to content

Commit

Permalink
optimized
Browse files Browse the repository at this point in the history
  • Loading branch information
leleliu008 committed Sep 4, 2024
1 parent 9379bf1 commit ddee5bf
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions xcpkg
Original file line number Diff line number Diff line change
Expand Up @@ -3593,14 +3593,13 @@ $DOT_CONTENT
#########################################################################################

[ -n "$PACKAGE_DEP_PYM" ] && {
step "install needed python packages via pip3"
step "install needed python packages via pip"

PIP3="$(command -v pip3)"
PYTHON3="$(command -v python3)" || abort 1 "command not found: python3"

run "$PIP3" --version
run "$PIP3" install --upgrade pip setuptools wheel
run "$PIP3" --version
run "$PIP3" install --upgrade "$PACKAGE_DEP_PYM"
run "$PYTHON3" --version
run "$PYTHON3" -m pip install --upgrade pip
run "$PYTHON3" -m pip install --upgrade "$PACKAGE_DEP_PYM"
}

#########################################################################################
Expand Down Expand Up @@ -7910,7 +7909,7 @@ fi

##################################################################################

XCPKG_VERSION=0.22.11
XCPKG_VERSION=0.22.12

XCPKG_ARG0="$0"
XCPKG_ARG1="$1"
Expand Down

0 comments on commit ddee5bf

Please sign in to comment.