diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ccf2272..876e3fe 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ ci: autoupdate_schedule: 'quarterly' repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v5.0.0 hooks: - id: check-docstring-first - id: end-of-file-fixer @@ -10,33 +10,33 @@ repos: - id: mixed-line-ending - id: check-merge-conflict - repo: https://github.com/asottile/setup-cfg-fmt - rev: v2.4.0 + rev: v2.7.0 hooks: - id: setup-cfg-fmt - repo: https://github.com/PyCQA/flake8 - rev: 6.1.0 + rev: 7.1.1 hooks: - id: flake8 additional_dependencies: [flake8-typing-imports==1.7.0] - repo: https://github.com/PyCQA/autoflake - rev: v2.2.1 + rev: v2.3.1 hooks: - id: autoflake args: ["--in-place", "--remove-all-unused-imports", "--ignore-init-module-imports", "--remove-unused-variables"] - repo: https://github.com/PyCQA/isort - rev: 5.12.0 + rev: 5.13.2 hooks: - id: isort - repo: https://github.com/psf/black - rev: 23.9.1 + rev: 24.10.0 hooks: - id: black - repo: https://github.com/asottile/pyupgrade - rev: v3.13.0 + rev: v3.19.1 hooks: - id: pyupgrade args: [--py37-plus] - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.5.1 + rev: v1.14.1 hooks: - id: mypy diff --git a/setup.cfg b/setup.cfg index 3869470..fb7ead5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,7 +23,7 @@ packages = find: install_requires = matplotlib numpy -python_requires = >=3.8 +python_requires = >=3.9 zip_safe = False [options.extras_require]