Update requirements.txt
Browse files- requirements.txt +15 -10
requirements.txt
CHANGED
|
@@ -1,13 +1,18 @@
|
|
| 1 |
-
# Core app
|
| 2 |
-
gradio
|
| 3 |
-
pandas>=2.0
|
| 4 |
-
openai>=1.40.0
|
| 5 |
|
| 6 |
-
#
|
| 7 |
-
sympy>=1.13
|
| 8 |
-
|
| 9 |
-
matplotlib>=3.8.0
|
| 10 |
-
pillow>=10.0.0
|
| 11 |
|
| 12 |
-
#
|
|
|
|
|
|
|
|
|
|
| 13 |
python-docx>=1.1.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# --- Core app ---
|
| 2 |
+
gradio==5.49.1
|
| 3 |
+
pandas>=2.0,<3
|
| 4 |
+
openai>=1.40.0,<3
|
| 5 |
|
| 6 |
+
# --- Symbolic / math ---
|
| 7 |
+
sympy>=1.13,<1.15 # 1.14.0 installs today
|
| 8 |
+
mpmath<1.4 # SymPy requires this bound
|
|
|
|
|
|
|
| 9 |
|
| 10 |
+
# --- Plotting + numerics ---
|
| 11 |
+
matplotlib>=3.8,<3.11
|
| 12 |
+
numpy>=1.24,<3
|
| 13 |
+
pillow>=10,<12
|
| 14 |
python-docx>=1.1.0
|
| 15 |
+
|
| 16 |
+
# --- Spaces runtime helpers ---
|
| 17 |
+
uvicorn>=0.14.0
|
| 18 |
+
spaces>=0.42
|