Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Upgrading

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

## New Features

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ dev-flake8 = [
"pydoclint == 0.8.3",
"pydocstyle == 6.3.0",
]
dev-formatting = ["black == 25.12.0", "isort == 8.0.1"]
dev-formatting = ["black == 26.3.1", "isort == 8.0.1"]
dev-mkdocs = [
"black == 25.12.0",
"black == 26.3.1",
"Markdown==3.10.2",
"mike == 2.2.0",
"mkdocs-gen-files == 0.6.1",
Expand Down
1 change: 0 additions & 1 deletion src/frequenz/client/reporting/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
This package provides a low-level interface for interacting with the reporting API.
"""


from ._client import ReportingApiClient

__all__ = ["ReportingApiClient"]
1 change: 1 addition & 0 deletions tests/test_client_reporting.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Copyright © 2024 Frequenz Energy-as-a-Service GmbH

"""Tests for the frequenz.client.reporting package."""

from unittest.mock import MagicMock, patch

import pytest
Expand Down
Loading