From 651e9356634afc07c9ec4c3dd59975f99e51c96f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 14:59:37 +0000 Subject: [PATCH] Update black requirement from <=25.1.0,>=23.1.9 to >=23.1.9,<=25.11.0 Updates the requirements on [black](https://github.com/psf/black) to permit the latest version. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/23.3.0...25.11.0) --- updated-dependencies: - dependency-name: black dependency-version: 25.11.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e034aa2..ad8c36e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,7 @@ dependencies = [ ] [project.optional-dependencies] -tests = ["pytest", "pytest-mock", "tox", "black>=23.1.9, <=25.1.0", "isort>=5.11.0, <=6.1.0"] +tests = ["pytest", "pytest-mock", "tox", "black>=23.1.9, <=25.11.0", "isort>=5.11.0, <=6.1.0"] [project.urls] "Homepage" = "https://github.com/autogluon/autogluon-bench" @@ -94,7 +94,7 @@ legacy_tox_ini = """ [testenv:lint] deps = - black>=23.1.9, <=25.1.0 + black>=23.1.9, <=25.11.0 isort>=5.11.0, <=6.1.0 commands = black --check --diff src/ tests/