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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ htmlcov/
# Claude Code
.claude/

# Eval results (scratch files only — eval_results.jsonl + eval_results_rig*.jsonl tracked via LFS)
# Eval results (scratch files only — versioned eval_results_v*.jsonl tracked via LFS)
eval_tight*.jsonl
eval_vram*.jsonl
ablation_progress.log
Expand Down
9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ dev = [
[tool.hatch.build.targets.wheel]
packages = ["src/forge"]

[tool.hatch.build.targets.sdist]
# Without scoping, hatchling sweeps the whole tree into the sdist — pulling in
# the LFS eval datasets (~112 MB) and the eval dashboard's node_modules (~97 MB,
# incl. platform .exe/.node binaries). Ship only what builds + tests from source.
exclude = [
"eval_results*.jsonl",
"tests/eval/dashboard/node_modules",
]

[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
Expand Down
Loading