-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements-dev.txt
More file actions
26 lines (23 loc) · 972 Bytes
/
Copy pathrequirements-dev.txt
File metadata and controls
26 lines (23 loc) · 972 Bytes
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
# Development + test dependencies (not needed at runtime).
#
# Install: pip install -r requirements-dev.txt
pytest>=9.0.3,<10.0
httpx>=0.28.1,<1.0
# mlx-audio is the runtime dep used by the qwen3 backend. Pinned here too so dev
# environments installing only requirements-dev.txt can't float to 0.4.1+ (which
# regressed Qwen3-1.7B ICL — generates EOS on first token). Full pin rationale
# (incl. the Metal thread-safety constraint) lives above the pin in requirements.txt.
mlx-audio>=0.4,<0.4.1; sys_platform == "darwin"
# Required to import conftest.py, backends/, and server.py in CI (no MLX/torch).
numpy>=1.26,<3
soundfile>=0.12
fastapi>=0.115
pydantic>=2.0
starlette>=0.40
uvicorn>=0.30
python-multipart>=0.0.9
-r requirements-clone.txt
# tests/test_fidelity.py only — integration-marked, skipped on CI. The test
# uses pytest.importorskip("librosa") so this dep can be omitted in
# minimal-install environments without breaking the suite.
librosa>=0.10,<1.0