feat: add support for Python 3.13 and 3.14 in classifiers; update mypy overrides

This commit is contained in:
bohd4nx
2026-05-29 01:50:24 +03:00
parent 34ee31e299
commit b2d06a7f22
+8
View File
@@ -43,6 +43,8 @@ classifiers = [
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: AsyncIO", "Framework :: AsyncIO",
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",
@@ -94,3 +96,9 @@ exclude = ["^examples/"]
[[tool.mypy.overrides]] [[tool.mypy.overrides]]
module = "rookiepy" module = "rookiepy"
ignore_missing_imports = true 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