diff --git a/pyproject.toml b/pyproject.toml index 2d4bac1..e5c4e01 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 :: Free Threading", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Security :: Cryptography", @@ -116,23 +117,6 @@ source = ["src", ".tox/py*/**/site-packages"] [tool.coverage.report] show_missing = true skip_covered = true -exclude_lines = [ - # a more strict default pragma - "\\# pragma: no cover\\b", - - # allow defensive code - "^\\s*raise AssertionError\\b", - "^\\s*raise NotImplementedError\\b", - "^\\s*return NotImplemented\\b", - "^\\s*raise$", - - # typing-related code - "^if (False|TYPE_CHECKING):", - ": \\.\\.\\.(\\s*#.*)?$", - "^ +\\.\\.\\.$", - "-> ['\"]?NoReturn['\"]?:", -] -omit = [] [tool.interrogate] @@ -155,7 +139,6 @@ enable_error_code = ["ignore-without-code"] ignore_missing_imports = true - [[tool.mypy.overrides]] module = "tests.*" ignore_errors = true @@ -203,7 +186,6 @@ ignore = [ "EM101", # no need for exception msg hygiene in tests ] - [tool.ruff.lint.isort] lines-between-types = 1 lines-after-imports = 2