diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3803960..8c5bcb7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,13 +23,13 @@ repos: - id: black - repo: https://github.com/asottile/setup-cfg-fmt - rev: v2.5.0 + rev: v2.7.0 hooks: - id: setup-cfg-fmt args: [--include-version-classifiers, --max-py-version=3.11] - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.11.2 + rev: v1.13.0 hooks: # 3.9 is broken due to https://github.com/python/typeshed/pull/5216 and https://github.com/python/typeshed/pull/5214 - id: mypy @@ -41,7 +41,7 @@ repos: - types-requests - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.6.9" + rev: "v0.7.2" hooks: - id: ruff args: ["--fix", "--show-fixes"] diff --git a/setup.cfg b/setup.cfg index c5f2699..6b2dd3e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -17,7 +17,6 @@ classifiers = Natural Language :: English Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 @@ -34,7 +33,7 @@ install_requires = pyyaml requests importlib-resources>=1.3;python_version<"3.9" -python_requires = >=3.8 +python_requires = >=3.9 package_dir = =src zip_safe = True