Spaces:
ESCP
/
No application file

titouan-app / README.md
TitouanBian's picture
Update README.md
972c136 verified

A newer version of the Gradio SDK is available: 6.12.0

Upgrade
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:

  1. Open README.md in your Hugging Face Space
  2. Replace the YAML header with the corrected version above
  3. Commit changes
  4. Wait for rebuild

Expected Result:

  • Build succeeds
  • App launches normally