Skip to content

Commit

Permalink
fix build problem
Browse files Browse the repository at this point in the history
  • Loading branch information
FindDefinition committed Oct 16, 2024
1 parent 2546f22 commit 94cd852
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
# user: __token__
# password: ${{ secrets.pypi_password }}
- name: Store the binary wheel
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist
Expand All @@ -174,7 +174,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion tools/build-wheels-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function repair_wheel {

export CUMM_DISABLE_JIT="1"
export CUMM_CUDA_ARCH_LIST="7.5;8.6"
"/opt/python/cp39-cp39/bin/pip" wheel /io/ --no-deps -w /io/wheelhouse_tmp
"/opt/python/cp313-cp313t/bin/pip" wheel /io/ --no-deps -w /io/wheelhouse_tmp

# Bundle external shared libraries into the wheels
for whl in /io/wheelhouse_tmp/*.whl; do
Expand Down

0 comments on commit 94cd852

Please sign in to comment.