bithal26 commited on
Commit
dff7b77
Β·
verified Β·
1 Parent(s): 5a7b361

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +11 -10
requirements.txt CHANGED
@@ -23,13 +23,14 @@ gradio_client>=2.0.0
23
  # Face detection (pure-Python wheel, installs fine on 3.13)
24
  facenet-pytorch>=2.6.0
25
 
26
- # Deep-learning runtime
27
- torch>=2.1.0
28
- torchvision>=0.16.0
29
-
30
- # Computer vision (headless = no GUI libs)
31
- opencv-python-headless>=4.8.0
32
-
33
- # ── Python 3.13 WHEEL-SAFE floors ────────────────────────────────────────────
34
- numpy>=2.0 # 2.0 is the first release with a cp313 wheel
35
- Pillow>=11.0 # 11.0 is the first release with a cp313 wheel
 
 
23
  # Face detection (pure-Python wheel, installs fine on 3.13)
24
  facenet-pytorch>=2.6.0
25
 
26
+ # ── Python 3.13 WHEEL-SAFE floors (verified on PyPI cp313-cp313-manylinux) ───
27
+ # torch 2.6.0 = first release with a cp313-cp313-manylinux_2_28 wheel
28
+ # torchvision 0.21.0 = paired release for torch 2.6
29
+ # numpy 2.0 = first cp313 wheel (1.26.x source-builds and OOMkills)
30
+ # Pillow 11.0 = first cp313 wheel (10.x setup.py crashes on Py3.13)
31
+ # opencv 4.10.0 = first cp313-manylinux wheel
32
+ torch>=2.6.0
33
+ torchvision>=0.21.0
34
+ numpy>=2.0
35
+ Pillow>=11.0
36
+ opencv-python-headless>=4.10.0