krissss0 commited on
Commit
90d2a37
·
verified ·
1 Parent(s): 0eb0b72

Fix: bump sdk_version to 5.6.0 in README + remove gradio from requirements (HF manages gradio install)

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. requirements.txt +3 -1
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: 🧬
4
  colorFrom: blue
5
  colorTo: indigo
6
  sdk: gradio
7
- sdk_version: 4.44.0
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
 
4
  colorFrom: blue
5
  colorTo: indigo
6
  sdk: gradio
7
+ sdk_version: 5.6.0
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
requirements.txt CHANGED
@@ -1,8 +1,10 @@
1
  alphadynamics>=0.3.7
2
- gradio>=5.0
3
  plotly>=5.0
4
  numpy>=1.24
5
  torch>=2.0
6
 
7
  # Python 3.13 removed the stdlib audioop module — pydub (gradio dep) needs it.
8
  audioop-lts; python_version >= "3.13"
 
 
 
 
1
  alphadynamics>=0.3.7
 
2
  plotly>=5.0
3
  numpy>=1.24
4
  torch>=2.0
5
 
6
  # Python 3.13 removed the stdlib audioop module — pydub (gradio dep) needs it.
7
  audioop-lts; python_version >= "3.13"
8
+
9
+ # gradio is installed by HF Spaces from sdk_version in README.md frontmatter
10
+ # (5.6.0 — has fixed huggingface_hub API + dropped stdlib audioop dep)