Files
cs249r_book/tinytorch/requirements.txt
dependabot[bot] 561c3acda6 deps(tinytorch): update nbdev requirement in /tinytorch (#1666)
Updates the requirements on [nbdev](https://github.com/AnswerDotAI/nbdev) to permit the latest version.
- [Release notes](https://github.com/AnswerDotAI/nbdev/releases)
- [Changelog](https://github.com/AnswerDotAI/nbdev/blob/main/CHANGELOG.md)
- [Commits](https://github.com/AnswerDotAI/nbdev/compare/2.3.0...3.0.15)

---
updated-dependencies:
- dependency-name: nbdev
  dependency-version: 3.0.15
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-04 07:58:34 -04:00

51 lines
1.5 KiB
Plaintext

# TinyTorch Course Dependencies
# Compatible with Python 3.10-3.13 (see pyproject.toml requires-python)
# ============================================================================
# Core Dependencies (Required)
# ============================================================================
# Numerical computing - TinyTorch core requirement
numpy>=2.2.6,<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.3
# ============================================================================
# Testing (Required for development)
# ============================================================================
pytest>=9.0.3
pytest-cov>=7.1.0
# ============================================================================
# Development Tools (Required for tito export)
# ============================================================================
# Jupytext - Convert .py files to .ipynb for nbdev
jupytext>=1.19.1
nbformat>=5.10.4
# ============================================================================
# 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.1
jupyterlab>=4.5.7
ipykernel>=7.2.0
nbdev>=3.0.15
# 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