From 23c2f3c4a69a46b78b9f76600070be5a18f30987 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 May 2024 14:28:03 +0000 Subject: [PATCH 1/2] Bump black from 24.3.0 to 24.4.2 Bumps [black](https://github.com/psf/black) from 24.3.0 to 24.4.2. - [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.3.0...24.4.2) --- updated-dependencies: - dependency-name: black dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e7b7c871..84cbaf9e 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ "pytest-freezegun==0.4.2", ], "development": [ - "black==24.3.0", + "black==24.4.2", "flake8==7.0.0", "isort==5.12.0", "mypy==0.812", From f498af880ecdb9dae8ee5e8a452e21907a606091 Mon Sep 17 00:00:00 2001 From: Pauline Laharanne Date: Fri, 3 May 2024 09:24:33 +0200 Subject: [PATCH 2/2] upgrade black in pre commit --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1a9fc034..157dcdd7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -7,7 +7,7 @@ repos: hooks: - id: trailing-whitespace - repo: https://github.com/psf/black - rev: "24.3.0" + rev: "24.4.2" hooks: - id: black - repo: https://github.com/PyCQA/flake8