File size: 278 Bytes
cdfe02c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Fix Notes

The build error came from Hugging Face reading the YAML metadata value:

python_version: 3.10

as Python 3.1.

This package fixes the metadata by changing it to:

python_version: "3.10"

It also quotes the Gradio SDK version for consistency:

sdk_version: "5.23.3"