From b3cd2ce326dbe6d232ab19bdf9266fdc9283d9d7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Jan 2025 18:55:21 +0000 Subject: [PATCH] :arrow_up: Update black requirement from ~=24.1 to >=24.1,<26.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/24.1.0...25.1.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index eb9d885..f212a81 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ extras_require = { "test": ["pytest~=8.0", "pytest-asyncio~=0.18", "pytest-cov~=3.0", "coverage-badge~=1.0"], "hook": ["pre-commit~=4.0"], - "lint": ["isort~=5.9", "black~=24.1", "flake518~=1.2", "darglint~=1.8"], + "lint": ["isort~=5.9", "black>=24.1,<26.0", "flake518~=1.2", "darglint~=1.8"], "docs": ["mkdocs-material~=9.0", "mkdocstrings[python]~=0.18", "mike~=2.0"], "ex": ["fastapi~=0.75", "uvicorn~=0.17", "requests~=2.27", "transformers~=4.17"], }