Skip to content

Commit

Permalink
ci: set PY_WHEEL_PURE in build_wheel so it's discoverable in the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gforsyth committed Jan 6, 2025
1 parent 019cac4 commit 6dcec22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ rapids-generate-version > ./VERSION
python -m pip wheel . -w dist -v --no-deps --disable-pip-version-check
./ci/validate_wheel.sh dist

RAPIDS_PY_WHEEL_NAME="dask-cuda" rapids-upload-wheels-to-s3 dist
RAPIDS_PY_WHEEL_NAME="dask-cuda" RAPIDS_PY_WHEEL_PURE="1" rapids-upload-wheels-to-s3 dist
2 changes: 1 addition & 1 deletion ci/test_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

set -eou pipefail

RAPIDS_PY_WHEEL_NAME="dask-cuda" rapids-download-wheels-from-s3 python ./dist
RAPIDS_PY_WHEEL_NAME="dask-cuda" RAPIDS_PY_WHEEL_PURE="1" rapids-download-wheels-from-s3 python ./dist

# echo to expand wildcard before adding `[extra]` requires for pip
python -m pip install $(echo ./dist/dask_cuda*.whl)[test]
Expand Down

0 comments on commit 6dcec22

Please sign in to comment.