diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4eb791c..e29ab75 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,16 +1,16 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v6.0.0 hooks: - id: check-docstring-first - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/asottile/setup-cfg-fmt - rev: v2.5.0 + rev: v3.1.0 hooks: - id: setup-cfg-fmt - repo: https://github.com/PyCQA/flake8 - rev: 7.1.0 + rev: 7.3.0 hooks: - id: flake8 args: [ "--ignore=E203,E501", "--max-complexity=12"] @@ -21,16 +21,16 @@ repos: - id: autoflake args: [ "--in-place", "--remove-all-unused-imports" ] - repo: https://github.com/PyCQA/isort - rev: 5.13.2 + rev: 7.0.0 hooks: - id: isort args: [ "--profile", "black" ] - - repo: https://github.com/psf/black - rev: 24.4.2 + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 25.11.0 hooks: - id: black - repo: https://github.com/asottile/pyupgrade - rev: v3.17.0 + rev: v3.21.1 hooks: - id: pyupgrade args: [ --py37-plus, --keep-runtime-typing ] diff --git a/setup.cfg b/setup.cfg index df82406..28e40cb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,8 +11,6 @@ license_files = LICENSE classifiers = Development Status :: 3 - Alpha Intended Audience :: Developers - License :: OSI Approved :: Apache Software License - License :: OSI Approved :: Apache-2.0 Operating System :: Microsoft :: Windows Operating System :: POSIX :: Linux Programming Language :: Python @@ -33,7 +31,7 @@ install_requires = numpy prefect tifffile -python_requires = >=3.8 +python_requires = >=3.10 package_dir = = src setup_requires =