Skip to content

Commit

Permalink
Update build_wheel.sh to directly insstall from index
Browse files Browse the repository at this point in the history
  • Loading branch information
nv-rliu committed Jun 11, 2024
1 parent 13b67ae commit f7841a9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,13 @@ fi

cd "${package_dir}"

python -m pip wheel . -w dist -vvv --no-deps --disable-pip-version-check
python -m pip wheel \
-w dist \
-vvv \
--no-deps \
--disable-pip-version-check \
--extra-index-url https://pypi.nvidia.com \
.

# pure-python packages should be marked as pure, and not have auditwheel run on them.
if [[ ${package_name} == "nx-cugraph" ]] || \
Expand Down

0 comments on commit f7841a9

Please sign in to comment.