Skip to content

Commit abf8500

Browse files
authored
Update black to v26.3.1 (#297)
This version fixes a security issue.
2 parents 92069b1 + 88adefc commit abf8500

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Upgrading
88

9-
<!-- Here goes notes on how to upgrade from previous versions, including deprecations and what they should be replaced with -->
9+
* Updates `black` to version 26.3.1, which fixes a security issue.
1010

1111
## New Features
1212

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ dev-flake8 = [
5252
"pydoclint == 0.8.3",
5353
"pydocstyle == 6.3.0",
5454
]
55-
dev-formatting = ["black == 25.12.0", "isort == 8.0.1"]
55+
dev-formatting = ["black == 26.3.1", "isort == 8.0.1"]
5656
dev-mkdocs = [
57-
"black == 25.12.0",
57+
"black == 26.3.1",
5858
"Markdown==3.10.2",
5959
"mike == 2.2.0",
6060
"mkdocs-gen-files == 0.6.1",

src/frequenz/client/reporting/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
This package provides a low-level interface for interacting with the reporting API.
77
"""
88

9-
109
from ._client import ReportingApiClient
1110

1211
__all__ = ["ReportingApiClient"]

tests/test_client_reporting.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Copyright © 2024 Frequenz Energy-as-a-Service GmbH
33

44
"""Tests for the frequenz.client.reporting package."""
5+
56
from unittest.mock import MagicMock, patch
67

78
import pytest

0 commit comments

Comments
 (0)