Skip to content

Commit 19d3621

Browse files
committed
Update Python version requirement and remove installation instructions for Python 3.11 from README
Changed the Python version requirement in pyproject.toml to use a compatible version specifier. Removed the installation command for Python 3.11 from the README to streamline the setup instructions.
1 parent 95ac2e7 commit 19d3621

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@ cd chatterbox-tts-api
6060
# Install uv if you haven't already
6161
curl -LsSf https://astral.sh/uv/install.sh | sh
6262

63-
# Use Python 3.11 (this command should install it if you don't already have 3.11)
64-
uv python pin 3.11
65-
6663
# Install dependencies with uv (automatically creates venv)
6764
uv sync
6865

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "REST API for Chatterbox TTS with OpenAI compatibility"
55
authors = [{ name = "Travis Van Nimwegen", email = "[email protected]" }]
66
readme = "README.md"
77
license = { text = "AGPLv3" }
8-
requires-python = ">=3.11"
8+
requires-python = "~=3.11"
99
dependencies = [
1010
# "chatterbox-tts @ git+https://github.com/resemble-ai/chatterbox.git",
1111
"chatterbox-tts @ git+https://github.com/travisvn/chatterbox-multilingual.git@exp",

0 commit comments

Comments
 (0)