Skip to content

Commit

Permalink
use different way to build wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
vot4anto committed Oct 9, 2024
1 parent 41c6842 commit a69e73b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions multibuild/common_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,10 @@ function build_wheel_cmd {

function pip_wheel_cmd {
local abs_wheelhouse=$1
python -vv -m build -n -w . -o $abs_wheelhouse
#python -m build -x -w . -o $abs_wheelhouse
#pip wheel $(pip_opts) -w $abs_wheelhouse --no-deps .
if [[ "$REPO_DIR" == "gdal" ]]; then
python -vv -m build -n -w . -o $abs_wheelhouse
fi
pip wheel $(pip_opts) -w $abs_wheelhouse --no-deps .
}

function bdist_wheel_cmd {
Expand Down

0 comments on commit a69e73b

Please sign in to comment.