From 0fea1f9829093945e4f1b75850ad2c6e47e6bd6b Mon Sep 17 00:00:00 2001 From: GeoJulien Date: Fri, 7 Nov 2025 17:00:11 +0100 Subject: [PATCH] fix(packaging): rollback support for Python 3.14 --- .github/workflows/lint-and-tests.yml | 1 - pyproject.toml | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/lint-and-tests.yml b/.github/workflows/lint-and-tests.yml index 66da520..d617f94 100644 --- a/.github/workflows/lint-and-tests.yml +++ b/.github/workflows/lint-and-tests.yml @@ -30,7 +30,6 @@ jobs: - "3.11" - "3.12" - "3.13" - - "3.14" # Steps represent a sequence of tasks that will be executed as part of the job steps: diff --git a/pyproject.toml b/pyproject.toml index 04d1f23..5c4d6e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,6 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", - "Programming Language :: Python :: 3.14", "Topic :: Documentation", "Topic :: Software Development :: Documentation", "Topic :: Text Processing :: Markup :: Markdown", @@ -89,7 +88,7 @@ Repository = "https://github.com/guts/mkdocs-rss-plugin/" # Black configuration [tool.black] -target-version = ["py310", "py311", "py312", "py313", "py314"] +target-version = ["py310", "py311", "py312", "py313"] # Coverage configuration [tool.coverage.report]