Spaces:
Paused
Paused
fix: lower Python requirement to 3.10 for HuggingFace Spaces compatibility
Browse files- pyproject.toml +1 -1
- setup.py +1 -1
pyproject.toml
CHANGED
|
@@ -3,7 +3,7 @@ name = "voice-tools"
|
|
| 3 |
version = "0.1.0"
|
| 4 |
description = "Voice extraction tool for video generation - extracts target voice from mixed audio files"
|
| 5 |
readme = "README.md"
|
| 6 |
-
requires-python = ">=3.
|
| 7 |
license = {text = "MIT"}
|
| 8 |
authors = [
|
| 9 |
{name = "Voice Profiler Contributors"}
|
|
|
|
| 3 |
version = "0.1.0"
|
| 4 |
description = "Voice extraction tool for video generation - extracts target voice from mixed audio files"
|
| 5 |
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.10"
|
| 7 |
license = {text = "MIT"}
|
| 8 |
authors = [
|
| 9 |
{name = "Voice Profiler Contributors"}
|
setup.py
CHANGED
|
@@ -6,5 +6,5 @@ setup(
|
|
| 6 |
name="voice-tools",
|
| 7 |
version="0.1.0",
|
| 8 |
packages=find_packages(),
|
| 9 |
-
python_requires=">=3.
|
| 10 |
)
|
|
|
|
| 6 |
name="voice-tools",
|
| 7 |
version="0.1.0",
|
| 8 |
packages=find_packages(),
|
| 9 |
+
python_requires=">=3.10",
|
| 10 |
)
|