Files
cs249r_book/mlsysim/.gitignore
Vijay Janapa Reddi 8d401ee12f fix(mlsysim): add .gitignore override so datasets/ is included in wheel
ROOT CAUSE FOUND: the repo root .gitignore has 'datasets/' which
excludes ALL datasets/ directories. Hatch's VCS plugin respects this,
so the wheel was built without mlsysim/datasets/. The root .gitignore
has '!mlsysim/mlsysim/datasets/' but Hatch didn't honor the negation.

Fix: mlsysim/.gitignore with '!mlsysim/datasets/' overrides locally.
Reverted all __getattr__/sys.modules/importlib hacks — clean relative
imports throughout.
2026-05-27 00:52:28 -04:00

3 lines
69 B
Plaintext

# Override root .gitignore exclusion of datasets/
!mlsysim/datasets/