@@ -28,6 +28,7 @@ classifiers = [
2828 " Programming Language :: Python :: 3.11" ,
2929 " Programming Language :: Python :: 3.12" ,
3030 " Programming Language :: Python :: 3.13" ,
31+ " Programming Language :: Python :: 3.14" ,
3132 " Programming Language :: Python :: Implementation :: CPython" ,
3233 " Programming Language :: Python :: Implementation :: PyPy" ,
3334 " Topic :: Text Processing" ,
@@ -64,9 +65,9 @@ fix = true
6465lint.select = [
6566 " C4" , # flake8-comprehensions
6667 " D" , # pydocstyle
67- " E" , # pycodestyle errors
68+ " E" , # pycodestyle
6869 " EM" , # flake8-errmsg
69- " F" , # pyflakes errors
70+ " F" , # pyflakes
7071 " I" , # isort
7172 " ICN" , # flake8-import-conventions
7273 " ISC" , # flake8-implicit-str-concat
@@ -76,7 +77,7 @@ lint.select = [
7677 " RUF022" , # unsorted-dunder-all
7778 " RUF100" , # unused noqa (yesqa)
7879 " UP" , # pyupgrade
79- " W" , # pycodestyle warnings
80+ " W" , # pycodestyle
8081 " YTT" , # flake8-2020
8182]
8283lint.ignore = [
@@ -95,6 +96,9 @@ lint.isort.known-first-party = [ "humanize" ]
9596lint.isort.required-imports = [ " from __future__ import annotations" ]
9697lint.pydocstyle.convention = " google"
9798
99+ [tool .pyproject-fmt ]
100+ max_supported_python = " 3.14"
101+
98102[tool .pytest .ini_options ]
99103addopts = " --color=yes"
100104filterwarnings = [
0 commit comments