We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2216d09 commit 7a0aa89Copy full SHA for 7a0aa89
.github/workflows/unit_test.yaml
@@ -26,7 +26,9 @@ jobs:
26
- name: Install dependencies
27
run: |
28
python -m pip install -e ".[dev]"
29
- python -m pip install -e ".[oss]"
+ # Will have to pin until monarch wheel is reasonable
30
+ pip install torch==2.9.0.dev20250815+cpu --index-url https://download.pytorch.org/whl/nightly/cpu
31
+ python -m pip install assets/wheels/monarch-no-torch20250815.whl
32
- name: Run unit tests with coverage
33
run: pytest tests --cov=. --cov-report=xml --durations=20 -vv
34
- name: Upload Coverage to Codecov
pyproject.toml
@@ -42,7 +42,7 @@ dev = [
42
]
43
oss = [
44
"torch",
45
- "torchmonarch-nightly==2025.8.1",
+ # "torchmonarch-nightly==2025.8.1",
46
# "torchstore",
47
48
0 commit comments