Spaces:
Running
Running
Upload postBuild
Browse files
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
|