JS6969 commited on
Commit
6eb2ac7
·
verified ·
1 Parent(s): 4ed363c

Upload postBuild

Browse files
Files changed (1) hide show
  1. postBuild +11 -0
postBuild ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -e
3
+
4
+ # Force reinstall Gradio (ignores any cached old version)
5
+ pip install --no-cache-dir --force-reinstall "gradio[oauth,mcp]==5.29.0"
6
+
7
+ # Print version check in logs
8
+ python - <<'PY'
9
+ import gradio as gr
10
+ print("✅ Using Gradio version:", gr.__version__)
11
+ PY