mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-07-16 06:07:17 -05:00
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.
3 lines
69 B
Plaintext
3 lines
69 B
Plaintext
# Override root .gitignore exclusion of datasets/
|
|
!mlsysim/datasets/
|