Skip to content

Commit

Permalink
build: enable python 3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
eginhard committed Nov 5, 2024
1 parent 76c031e commit 1e4aabc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, "3.10", "3.11", "3.12"]
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
uv-resolution: ["lowest-direct", "highest"]
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "coqui-tts-trainer"
version = "0.1.6"
description = "General purpose model trainer for PyTorch that is more flexible than it should be, by 🐸Coqui."
readme = "README.md"
requires-python = ">=3.9, <3.13"
requires-python = ">=3.9, <3.14"
license = {text = "Apache-2.0"}
authors = [
{name = "Eren Gölge", email = "egolge@coqui.ai"}
Expand All @@ -34,6 +34,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
Expand Down Expand Up @@ -74,7 +75,6 @@ Issues = "https://github.com/idiap/coqui-ai-Trainer/issues"

[tool.ruff]
line-length = 120
target-version = "py39"
lint.extend-select = [
"B", # bugbear
"I", # import sorting
Expand Down

0 comments on commit 1e4aabc

Please sign in to comment.