From 066e0f916f90b8aa33fc6a79b89a6395cbaf4f36 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Sun, 17 May 2026 10:08:39 +0100 Subject: [PATCH] Add support for Python 3.16 --- .github/workflows/tests.yml | 5 +++-- pyproject.toml | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fdd840d..6300cdc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,10 +14,11 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.15", "3.14", "3.13", "3.12"] + python-version: ["3.16", "3.15", "3.14", "3.13", "3.12"] include: - - python-version: "3.15" + - python-version: "3.16" branch: "main" + allow-prerelease: "true" steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/pyproject.toml b/pyproject.toml index ef39594..bc26508 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ classifiers = [ "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", "Programming Language :: Python :: 3.15", + "Programming Language :: Python :: 3.16", "Topic :: Documentation", "Topic :: Software Development :: Documentation", ] @@ -66,4 +67,4 @@ lint.ignore = [ lint.isort.required-imports = [ "from __future__ import annotations" ] [tool.pyproject-fmt] -max_supported_python = "3.15" +max_supported_python = "3.16"