Spaces:
No application file
No application file
A newer version of the Gradio SDK is available: 6.12.0
metadata
title: Titouan App
emoji: π
colorFrom: blue
colorTo: green
sdk: gradio
app_file: app.py
pinned: false
sdk_version: 6.9.0
Titouan App
This app connects Hugging Face with n8n workflow. README FIX DOCUMENT β Hugging Face Space
Issue: The build failed with: ERROR: docker.io/library/python:3.1: not found
Root Cause: The python_version field in README.md was written as: python_version: 3.10
YAML interpreted 3.10 as a float β 3.1 Hugging Face then tried to use python:3.1 (which does not exist).
Fix: Convert python_version into a STRING by adding quotes.
Corrected README header:
title: Book Analytics Dashboard emoji: "π" colorFrom: blue colorTo: purple sdk: gradio python_version: "3.10" sdk_version: "5.22.0" app_file: app.py pinned: false
Alternative (simpler): You can REMOVE the python_version line entirely. Hugging Face will default to Python 3.10.
Why this matters:
- YAML treats unquoted numbers as numeric values
- 3.10 becomes 3.1 internally
- Quoting preserves exact version string
Action Steps:
- Open README.md in your Hugging Face Space
- Replace the YAML header with the corrected version above
- Commit changes
- Wait for rebuild
Expected Result:
- Build succeeds
- App launches normally