jtdearmon commited on
Commit
130c3bf
·
verified ·
1 Parent(s): e925a4b

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +15 -10
requirements.txt CHANGED
@@ -1,13 +1,18 @@
1
- # Core app
2
- gradio>=4.44.0,<6
3
- pandas>=2.0.0
4
- openai>=1.40.0
5
 
6
- # Math + plotting
7
- sympy>=1.13.0,<1.15
8
- numpy>=1.24.0
9
- matplotlib>=3.8.0
10
- pillow>=10.0.0
11
 
12
- # DOCX export
 
 
 
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