From f97f565295c9763df056bcd6f5c96b84ef87f33e Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Fri, 7 Aug 2026 08:15:53 +0100 Subject: [PATCH] feat: add support for Python 3.15 Committed via https://github.com/asottile/all-repos --- .github/workflows/ci.yml | 1 + pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3d5a1781..ab52c8900 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,7 @@ jobs: - "3.12" - "3.13" - "3.14" + - "3.15" os: - ubuntu-latest - windows-latest diff --git a/pyproject.toml b/pyproject.toml index 0e43d7892..b57193eb2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,7 @@ classifiers = [ "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", + "Programming Language :: Python :: 3.15", "Topic :: Software Development :: Libraries", ] dependencies = [ @@ -97,7 +98,7 @@ lint.per-file-ignores."tests/**/*" = [ lint.isort.known-first-party = [ "deezer" ] [tool.pyproject-fmt] -max_supported_python = "3.14" +max_supported_python = "3.15" [tool.pytest] addopts = [ "-v", "-Wdefault", "--cov=deezer" ]