forked from harvard-edge/cs249r_book
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
50 lines (38 loc) · 1.52 KB
/
Copy pathrequirements.txt
File metadata and controls
50 lines (38 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# 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>=15.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.3
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,<3.0.16
# 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