Spaces:
Running on T4
Running on T4
Update requirements.txt
Browse files- requirements.txt +6 -2
requirements.txt
CHANGED
|
@@ -1,5 +1,7 @@
|
|
| 1 |
# Core deps
|
| 2 |
-
|
|
|
|
|
|
|
| 3 |
cython # Required for BasicSR compilation
|
| 4 |
Pillow
|
| 5 |
scipy
|
|
@@ -39,4 +41,6 @@ fastapi
|
|
| 39 |
uvicorn
|
| 40 |
boto3
|
| 41 |
# Optional but included in CodeFormer repo
|
| 42 |
-
tb-nightly
|
|
|
|
|
|
|
|
|
| 1 |
# Core deps
|
| 2 |
+
# NumPy: Let pip choose version with pre-built wheels for Python 3.13
|
| 3 |
+
# Older versions (1.26.x) don't have Python 3.13 wheels and compile from source (very slow)
|
| 4 |
+
numpy
|
| 5 |
cython # Required for BasicSR compilation
|
| 6 |
Pillow
|
| 7 |
scipy
|
|
|
|
| 41 |
uvicorn
|
| 42 |
boto3
|
| 43 |
# Optional but included in CodeFormer repo
|
| 44 |
+
# tb-nightly removed: causes slow pandas build from source on Python 3.13
|
| 45 |
+
# If needed, install separately: pip install tb-nightly
|
| 46 |
+
# pandas>=2.2.3 # Ensure pandas version with Python 3.13 wheels
|