Skip to content

Commit

Permalink
try to install from sdist
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielYang59 committed Oct 13, 2024
1 parent 5d5f824 commit 7f5bacd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ jobs:
# see: https://discuss.dgl.ai/t/filenotfounderror-cannot-find-dgl-c-graphbolt-library/4302
pip install torch==2.2.1
uv pip install --editable '.[${{ matrix.config.extras }}]' --resolution=${{ matrix.config.resolution }}
# Install from sdist
mkdir -p dist/
python -m build --sdist
ls dist/ # DEBUG
uv pip install "dist/*.tar.gz[${{ matrix.config.extras }}]" --resolution=${{ matrix.config.resolution }}
- name: Install optional Ubuntu dependencies
if: matrix.config.os == 'ubuntu-latest'
Expand Down

0 comments on commit 7f5bacd

Please sign in to comment.