mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-05-08 02:28:25 -05:00
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>
51 lines
1.5 KiB
Plaintext
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
|