jcudit HF Staff commited on
Commit
7e0863e
·
1 Parent(s): 50c17ca

fix: lower Python requirement to 3.10 for HuggingFace Spaces compatibility

Browse files
Files changed (2) hide show
  1. pyproject.toml +1 -1
  2. 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.11"
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.11",
10
  )
 
6
  name="voice-tools",
7
  version="0.1.0",
8
  packages=find_packages(),
9
+ python_requires=">=3.10",
10
  )