Skip to content

Commit

Permalink
Make: Missing CI deps
Browse files Browse the repository at this point in the history
ashvardanian committed Mar 28, 2024
1 parent fb44b88 commit a8a808d
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --no-cache-dir --upgrade pip
pip install -e .
pip install -e ".[torch,onnx]"
pip install pytest
- name: Test with PyTest
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -65,7 +65,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -e ".[torch,onnx]"
pip install pytest
- name: Run PyTest
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -8,5 +8,6 @@ pip install -e . # For core dependencies
pip install -e ".[torch]" # For PyTorch
pip install -e ".[onnx]" # For ONNX on CPU
pip install -e ".[onnx-gpu]" # For ONNX on GPU, available for some platforms
pip install -e ".[torch,onnx]" # For PyTorch and ONNX Python tests
pytest scripts/ -s -x -Wd -v
```

0 comments on commit a8a808d

Please sign in to comment.