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
5 changes: 1 addition & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
pip install -e ".[test,build,yuanrong]"
# Pin below 0.3.12: the 0.3.12 non-cuda wheel ships a mooncake_master binary
# linked against libcudart.so.12, which fails to start on runners without CUDA.
pip install "mooncake-transfer-engine-non-cuda<0.3.12"
pip install -e ".[test,build,yuanrong,mooncake]"
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ jobs:
python -m pip install --upgrade pip
pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
pip install -e ".[test,build,yuanrong]"
# Pin below 0.3.12: the 0.3.12 non-cuda wheel ships a mooncake_master binary
# linked against libcudart.so.12, which fails to start on runners without CUDA.
pip install "mooncake-transfer-engine-non-cuda<0.3.12"
pip install "mooncake-transfer-engine-non-cuda"
Comment on lines 35 to +36
- name: Run Tests
run: |
pytest tests
Expand Down
Loading