Skip to content

Commit 771ba56

Browse files
author
Allen Wang
committed
sorry joe
1 parent 560c878 commit 771ba56

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

.github/workflows/unit_test.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,7 @@ jobs:
2525
run: python -m pip install --upgrade pip
2626
- name: Install dependencies
2727
run: |
28-
python -m pip install -e ".[dev]"
29-
# 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 --no-build-isolation --verbose assets/wheels/monarch_no_torch-0.1.0.dev20250815-py3-none-any.whl
28+
python -m pip install -e ".[dev,oss]"
3229
- name: Run unit tests with coverage
3330
# TODO add all tests
3431
run: pytest tests/unit_tests --cov=. --cov-report=xml --durations=20 -vv

assets/version.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,14 @@ dev = [
4343
"pytest-asyncio",
4444
]
4545
oss = [
46-
"torch",
47-
"torchmonarch-nightly==2025.8.1",
48-
"torchstore",
46+
"torch==2.9.0.dev20250815+cpu",
47+
"monarch-no-torch @ file:///${PROJECT_ROOT}/assets/wheels/monarch_no_torch-0.1.0.dev20250815-py3-none-any.whl",
4948
]
5049

5150

5251
[project.scripts]
5352
forge = "forge.cli.forge:main"
5453

55-
[tool.setuptools.dynamic]
56-
version = {file = "assets/version.txt"}
57-
5854

5955
# ---- Explicit project build information ---- #
6056
[build-system]
@@ -81,6 +77,10 @@ name = "pytorch-nightly-cu128"
8177
url = "https://download.pytorch.org/whl/nightly/cu128"
8278
#explicit = true
8379

80+
[[tool.uv.index]]
81+
name = "pytorch-nightly-cpu"
82+
url = "https://download.pytorch.org/whl/nightly/cpu"
83+
8484
# vllm
8585
# [[tool.uv.index]]
8686
# name = "vllm-nightly"
@@ -89,7 +89,7 @@ url = "https://download.pytorch.org/whl/nightly/cu128"
8989

9090
[tool.uv.sources]
9191
torchtitan = { index = "pytorch-nightly-cu128" }
92-
torch = { index = "pytorch-nightly-cu128" }
92+
torch = { index = "pytorch-nightly-cpu" }
9393
torchstore = { git = "ssh://[email protected]/meta-pytorch/torchstore.git" }
9494
#vllm = { index = "vllm-nightly" }
9595

0 commit comments

Comments
 (0)