diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 03aaf47..af8aea5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 + rev: v4.4.0 hooks: - name: remove trailing whitespace id: trailing-whitespace @@ -12,26 +12,26 @@ repos: id: requirements-txt-fixer - repo: https://github.com/pycqa/isort - rev: 5.10.1 + rev: 5.12.0 hooks: - name: sort python imports id: isort - repo: https://github.com/psf/black - rev: 22.6.0 + rev: 23.3.0 hooks: - name: re-format with black id: black language_version: python3 - repo: https://github.com/pycqa/flake8 - rev: 5.0.4 + rev: 6.0.0 hooks: - name: check syntax with flake8 id: flake8 - repo: https://github.com/asottile/setup-cfg-fmt - rev: v2.0.0 + rev: v2.2.0 hooks: - name: format setup.cfg id: setup-cfg-fmt diff --git a/setup.cfg b/setup.cfg index 3486302..6f01a84 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,6 +18,7 @@ classifiers = Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Topic :: Software Development :: Build Tools keywords = make @@ -30,7 +31,7 @@ project_urls = [options] install_requires = - click >= 8 + click>=8 setuptools wheel python_requires = >=3.10