Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,9 @@ jobs:
pip install *.whl
popd

pip install cuda_python*.whl
# Subpackages are already installed from CI artifacts above.
# --no-deps avoids re-resolving cuda-core from PyPI during tag releases.
pip install --no-deps cuda_python*.whl

# This step sets the PR_NUMBER/BUILD_LATEST/BUILD_PREVIEW env vars.
- name: Get PR number
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test-wheel-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -372,10 +372,12 @@ jobs:
- name: Ensure cuda-python installable
if: ${{ inputs.test-mode == 'standard' && env.BINDINGS_SOURCE == 'main' }}
run: |
# Subpackages are already installed from CI artifacts; --no-deps keeps
# tag-release cuda-core wheels from being replaced by PyPI pins.
if [[ "${{ matrix.LOCAL_CTK }}" == 1 ]]; then
pip install --only-binary=:all: cuda_python*.whl
pip install --only-binary=:all: --no-deps cuda_python*.whl
else
pip install --only-binary=:all: $(ls cuda_python*.whl)[all]
pip install --only-binary=:all: --no-deps $(ls cuda_python*.whl)[all]
fi

- name: Install cuda.pathfinder extra wheels for testing
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test-wheel-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -341,10 +341,12 @@ jobs:
- name: Ensure cuda-python installable
if: ${{ inputs.test-mode == 'standard' && env.BINDINGS_SOURCE == 'main' }}
run: |
# Subpackages are already installed from CI artifacts; --no-deps keeps
# tag-release cuda-core wheels from being replaced by PyPI pins.
if ('${{ matrix.LOCAL_CTK }}' -eq '1') {
pip install --only-binary=:all: (Get-ChildItem -Filter cuda_python*.whl).FullName
pip install --only-binary=:all: --no-deps (Get-ChildItem -Filter cuda_python*.whl).FullName
} else {
pip install --only-binary=:all: "$((Get-ChildItem -Filter cuda_python*.whl).FullName)[all]"
pip install --only-binary=:all: --no-deps "$((Get-ChildItem -Filter cuda_python*.whl).FullName)[all]"
}

- name: Install cuda.pathfinder extra wheels for testing
Expand Down
Loading