Spaces:
Running on Zero
Running on Zero
Commit ·
c4c7d72
1
Parent(s): 2f69ead
Relax Python requirement to >=3.10 for HF Spaces compatibility
Browse filesHF ZeroGPU spaces run Python 3.10; the >=3.13 constraint caused uv to
skip dependency installation entirely, leaving diffusers and other
packages missing at runtime.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- pyproject.toml +1 -1
pyproject.toml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
[project]
|
| 2 |
name = "firered-image-edit"
|
| 3 |
version = "1.0.0"
|
| 4 |
-
requires-python = ">=3.
|
| 5 |
dependencies = [
|
| 6 |
"transformers>=5.0.0",
|
| 7 |
"huggingface_hub",
|
|
|
|
| 1 |
[project]
|
| 2 |
name = "firered-image-edit"
|
| 3 |
version = "1.0.0"
|
| 4 |
+
requires-python = ">=3.10"
|
| 5 |
dependencies = [
|
| 6 |
"transformers>=5.0.0",
|
| 7 |
"huggingface_hub",
|