From b2d06a7f224ad44237680dba4272ad2a56ec9e06 Mon Sep 17 00:00:00 2001 From: bohd4nx Date: Fri, 29 May 2026 01:50:24 +0300 Subject: [PATCH] feat: add support for Python 3.13 and 3.14 in classifiers; update mypy overrides --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 431667e..dcda488 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,6 +43,8 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Framework :: AsyncIO", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", @@ -94,3 +96,9 @@ exclude = ["^examples/"] [[tool.mypy.overrides]] module = "rookiepy" ignore_missing_imports = true + +[[tool.mypy.overrides]] +# rookiepy = None assignment is valid when the package is installed (type: ModuleType) +# but mypy on CI (without rookiepy) sees it as Any and flags the comment as unused. +module = "pyfragment.core.cookies" +warn_unused_ignores = false