ForgeCaptions / postBuild
JS6969's picture
Upload postBuild
6eb2ac7 verified
raw
history blame contribute delete
280 Bytes
#!/usr/bin/env bash
set -e
# Force reinstall Gradio (ignores any cached old version)
pip install --no-cache-dir --force-reinstall "gradio[oauth,mcp]==5.29.0"
# Print version check in logs
python - <<'PY'
import gradio as gr
print("✅ Using Gradio version:", gr.__version__)
PY