Upgraded gradio version to 5.20.0 and all the dependencies.
Browse files- README.md +1 -1
- app.py +1 -1
- requirements.txt +19 -20
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: 🌍
|
|
4 |
colorFrom: blue
|
5 |
colorTo: blue
|
6 |
sdk: gradio
|
7 |
-
sdk_version:
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: unknown
|
|
|
4 |
colorFrom: blue
|
5 |
colorTo: blue
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 5.20.0
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: unknown
|
app.py
CHANGED
@@ -85,7 +85,7 @@ def create_task_controls(tab_id):
|
|
85 |
return shown_tasks
|
86 |
|
87 |
|
88 |
-
demo = gr.Blocks(css=CSS)
|
89 |
with demo:
|
90 |
gr.HTML(TITLE)
|
91 |
gr.Markdown(
|
|
|
85 |
return shown_tasks
|
86 |
|
87 |
|
88 |
+
demo = gr.Blocks(css=CSS, theme=gr.themes.Default(font=[gr.themes.GoogleFont("Inconsolata"), "Arial", "sans-serif"]))
|
89 |
with demo:
|
90 |
gr.HTML(TITLE)
|
91 |
gr.Markdown(
|
requirements.txt
CHANGED
@@ -1,22 +1,21 @@
|
|
1 |
-
APScheduler==3.
|
2 |
-
black==
|
3 |
-
click==8.1.
|
4 |
-
datasets==
|
5 |
-
gradio==
|
6 |
-
gradio_client==
|
7 |
-
huggingface-hub
|
8 |
-
markdown-it-py==
|
9 |
-
MarkupSafe==2.1.
|
10 |
-
matplotlib==3.
|
11 |
-
numpy==
|
12 |
-
pandas==2.
|
13 |
-
plotly==
|
14 |
-
python-dateutil==2.
|
15 |
-
requests==2.
|
16 |
semantic-version==2.10.0
|
17 |
-
tqdm==4.
|
18 |
-
transformers==4.
|
19 |
-
tokenizers
|
20 |
openpyxl>=3.1.2,<4.0.0
|
21 |
-
gradio_rangeslider==0.0.8
|
22 |
-
|
|
|
1 |
+
APScheduler==3.11.0
|
2 |
+
black==25.1.0
|
3 |
+
click==8.1.8
|
4 |
+
datasets==3.3.2
|
5 |
+
gradio==5.20.0
|
6 |
+
gradio_client==1.7.2
|
7 |
+
huggingface-hub==0.29.1
|
8 |
+
markdown-it-py==3.0.0
|
9 |
+
MarkupSafe==2.1.5
|
10 |
+
matplotlib==3.10.1
|
11 |
+
numpy==2.2.3
|
12 |
+
pandas==2.2.3
|
13 |
+
plotly==6.0.0
|
14 |
+
python-dateutil==2.9.0
|
15 |
+
requests==2.32.3
|
16 |
semantic-version==2.10.0
|
17 |
+
tqdm==4.67.1
|
18 |
+
transformers==4.49.0
|
19 |
+
tokenizers==0.21.0
|
20 |
openpyxl>=3.1.2,<4.0.0
|
21 |
+
gradio_rangeslider==0.0.8
|
|