Kwasiasomani commited on
Commit
1227b41
·
verified ·
1 Parent(s): 0ce3d65

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +4 -14
requirements.txt CHANGED
@@ -1,19 +1,9 @@
1
- # --- core app ---
2
- streamlit==1.25.0 # supports Python 3.8
3
- altair==4.2.2 # fixes "No module named 'altair.vegalite.v4'"
4
-
5
- # --- ML / DL ---
6
  transformers==4.36.2
7
- torch==2.1.2 # CPU build; see note below for CUDA
8
-
9
- # --- data + viz ---
10
  pandas==2.0.3
11
  plotly==5.18.0
12
  matplotlib==3.7.3
13
 
14
- # --- images ---
15
- pillow==10.2.0 # (this provides PIL.Image)
16
-
17
- # --- compatibility pin often needed by older Streamlit ---
18
- protobuf<4
19
-
 
1
+ streamlit>=1.28,<2.0
2
+ pillow>=10,<11
3
+ altair==4.2.2
 
 
4
  transformers==4.36.2
5
+ torch==2.1.2
 
 
6
  pandas==2.0.3
7
  plotly==5.18.0
8
  matplotlib==3.7.3
9