mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2025-12-05 19:17:52 -06:00
The itemize environment parameters [leftmargin=*, itemsep=1pt, parsep=0pt]
were appearing as visible text in the PDF because the enumitem package
wasn't loaded. This fix adds \usepackage{enumitem} to the preamble.
All itemized lists now format correctly with proper spacing and margins.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
# TinyTorch Course Dependencies
|
|
# Compatible with Python 3.8-3.13
|
|
|
|
# ============================================================================
|
|
# Core Dependencies (Required)
|
|
# ============================================================================
|
|
|
|
# Numerical computing - TinyTorch core requirement
|
|
numpy>=1.24.0,<3.0.0
|
|
|
|
# Terminal UI - Used by tito CLI and milestone examples
|
|
rich>=13.0.0
|
|
|
|
# Configuration files - Used by tito CLI
|
|
PyYAML>=6.0
|
|
|
|
# ============================================================================
|
|
# Testing (Required for development)
|
|
# ============================================================================
|
|
|
|
pytest>=8.0.0
|
|
pytest-cov>=4.0.0
|
|
|
|
# ============================================================================
|
|
# Development Tools (Required for tito export)
|
|
# ============================================================================
|
|
|
|
# Jupytext - Convert .py files to .ipynb for nbdev
|
|
jupytext>=1.16.0
|
|
nbformat>=5.10.0
|
|
|
|
# ============================================================================
|
|
# Optional Dependencies (Uncomment if needed)
|
|
# ============================================================================
|
|
|
|
# Visualization for milestone examples and benchmarking (Modules 17, 19, 20)
|
|
# matplotlib>=3.9.0
|
|
|
|
# Jupyter for interactive development
|
|
# jupyter>=1.1.0
|
|
# jupyterlab>=4.2.0
|
|
# ipykernel>=6.29.0
|
|
|
|
# Code quality tools
|
|
# black>=24.0.0
|
|
# mypy>=1.11.0
|
|
# ruff>=0.6.0
|
|
|
|
# Type hints for older Python versions
|
|
# typing-extensions>=4.12.0 |