X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/141291a1d86d43158da89d0254b7c2cc79609679..01b8d3d4095ebdb91d0d39012a517931625c63cb:/pyproject.toml diff --git a/pyproject.toml b/pyproject.toml index 554d7d0..6803a62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ build-backend = "hatchling.build" [project] name = "black" description = "The uncompromising code formatter." -license = "MIT" +license = { text = "MIT" } requires-python = ">=3.7" authors = [ { name = "Łukasz Langa", email = "lukasz@langa.pl" }, @@ -65,9 +65,10 @@ classifiers = [ dependencies = [ "click>=8.0.0", "mypy_extensions>=0.4.3", + "packaging>=22.0", "pathspec>=0.9.0", "platformdirs>=2", - "tomli>=1.1.0; python_full_version < '3.11.0a7'", + "tomli>=1.1.0; python_version < '3.11'", "typed-ast>=1.4.2; python_version < '3.8' and implementation_name == 'cpython'", "typing_extensions>=3.10.0.0; python_version < '3.10'", ] @@ -119,7 +120,7 @@ sources = ["src"] enable-by-default = false dependencies = [ "hatch-mypyc>=0.13.0", - "mypy==0.971", + "mypy==0.991", # Required stubs to be removed when the packages support PEP 561 themselves "types-typed-ast>=1.4.2", ] @@ -213,4 +214,6 @@ filterwarnings = [ # aiohttp is using deprecated cgi modules - Safe to remove when fixed: # https://github.com/aio-libs/aiohttp/issues/6905 '''ignore:'cgi' is deprecated and slated for removal in Python 3.13:DeprecationWarning''', + # Work around https://github.com/pytest-dev/pytest/issues/10977 for Python 3.12 + '''ignore:(Attribute s|Attribute n|ast.Str|ast.Bytes|ast.NameConstant|ast.Num) is deprecated and will be removed in Python 3.14:DeprecationWarning''' ]