Skip to content
Merged
Show file tree
Hide file tree
Changes from 31 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/unit_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@ jobs:
run: python -m pip install --upgrade pip
- name: Install dependencies
run: |
python -m pip install -e ".[dev]"
# Will have to pin until monarch wheel is reasonable
pip install torch==2.9.0.dev20250815+cpu --index-url https://download.pytorch.org/whl/nightly/cpu
python -m pip install --no-build-isolation --verbose assets/wheels/monarch_no_torch-0.1.0.dev20250815-py3-none-any.whl
python -m pip install --no-build-isolation -e ".[dev,oss]"
- name: Run unit tests with coverage
# TODO add all tests
run: pytest tests/unit_tests --cov=. --cov-report=xml --durations=20 -vv
Expand Down
1 change: 0 additions & 1 deletion assets/version.txt

This file was deleted.

14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,14 @@ dev = [
"pytest-asyncio",
]
oss = [
"torch",
"torchmonarch-nightly==2025.8.1",
"torchstore",
"torch==2.9.0.dev20250815+cpu",
"monarch-no-torch @ file:///${PROJECT_ROOT}/assets/wheels/monarch_no_torch-0.1.0.dev20250815-py3-none-any.whl",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👀

]


[project.scripts]
forge = "forge.cli.forge:main"

[tool.setuptools.dynamic]
version = {file = "assets/version.txt"}


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

[[tool.uv.index]]
name = "pytorch-nightly-cpu"
url = "https://download.pytorch.org/whl/nightly/cpu"

# vllm
# [[tool.uv.index]]
# name = "vllm-nightly"
Expand All @@ -89,7 +89,7 @@ url = "https://download.pytorch.org/whl/nightly/cu128"

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

Expand Down
Loading