Skip to content

Commit a61e5fa

Browse files
kkraus14cursoragent
andcommitted
Fix merge step: install wheel into system Python
The merge_cuda_core_wheels.py script runs with the system Python (3.12 from setup-python1), not the venv. Use --system so the wheel package is available to the system Python. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 89d7c06 commit a61e5fa

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.gitattributes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ cuda_core/cuda/core/_cpp/*.hpp -binary text diff
1414
*.svg binary
1515
# SCM syntax highlighting & preventing 3-way merges
1616
pixi.lock merge=binary linguist-language=YAML linguist-generated=true
17-
uv.lock merge=binary linguist-language=TOML linguist-generated=true# "export-subst" specifies that this file will get filled in with the current
17+
uv.lock merge=binary linguist-language=TOML linguist-generated=true
18+
# "export-subst" specifies that this file will get filled in with the current
1819
# commit and tag information when running `git archive`. This allows
1920
# `setuptools-scm` to correctly determine the version when building from a git
2021
# archive. See #1609.

.github/workflows/build-wheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ jobs:
470470
471471
- name: Merge cuda.core wheels
472472
run: |
473-
uv pip install wheel
473+
uv pip install --system wheel
474474
python ci/tools/merge_cuda_core_wheels.py \
475475
"${{ env.CUDA_CORE_ARTIFACTS_DIR }}"/cu"${BUILD_CUDA_MAJOR}"/cuda_core*.whl \
476476
"${{ env.CUDA_CORE_ARTIFACTS_DIR }}"/cu"${BUILD_PREV_CUDA_MAJOR}"/cuda_core*.whl \

0 commit comments

Comments
 (0)