From 193852a7f8a203d3fb2da500f6cde9bdb212b264 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 11 Oct 2025 14:23:36 -0400 Subject: [PATCH] bump flake8/black tools Change-Id: Idcd907ffe4dac6329abd1823ee0f450110801f8d --- .pre-commit-config.yaml | 4 ++-- pyproject.toml | 4 ++-- tox.ini | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b99f3bff..e31b2a2a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/python/black - rev: 25.1.0 + rev: 25.9.0 hooks: - id: black @@ -23,7 +23,7 @@ repos: - flake8-builtins - flake8-docstrings - flake8-rst-docstrings - - pydocstyle<4.0.0 + - pydocstyle - pygments diff --git a/pyproject.toml b/pyproject.toml index 48c42569..e5629a60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,9 +75,9 @@ lint = [ "flake8-builtins", "flake8-docstrings", "flake8-rst-docstrings", - "pydocstyle<4.0.0", + "pydocstyle", "pygments", - "black==25.1.0" + "black==25.9.0" ] mypy = [ diff --git a/tox.ini b/tox.ini index 6f3f8af8..52d32094 100644 --- a/tox.ini +++ b/tox.ini @@ -8,7 +8,7 @@ envlist = py-sqlalchemy SQLA_REPO = {env:SQLA_REPO:git+https://github.com/sqlalchemy/sqlalchemy.git} -BLACK_VERSION = 25.1.0 +BLACK_VERSION = 25.9.0 [testenv] cov_args=--cov=alembic --cov-report term --cov-report xml -- 2.47.3