diff --git a/cicd_utils/cicd/test_helpers.py b/cicd_utils/cicd/test_helpers.py index 12e34396..a44a00be 100644 --- a/cicd_utils/cicd/test_helpers.py +++ b/cicd_utils/cicd/test_helpers.py @@ -14,7 +14,7 @@ from plotly import graph_objects as go if TYPE_CHECKING: - from collections.abc import Iterator + from collections.abc import Generator from importlib.abc import Loader from importlib.machinery import ModuleSpec from types import ModuleType @@ -41,7 +41,7 @@ def plotly_show_browser(fig: go.Figure, renderer: str = "browser", **kwargs: Any @contextlib.contextmanager -def patch_plotly_show() -> Iterator[None]: +def patch_plotly_show() -> Generator[None]: """Patch the :func:`plotly.io.show()` function to skip any rendering steps and, instead, simply call :func:`plotly.io._utils.validate_coerce_fig_to_dict()`. diff --git a/docs/reference/changelog.md b/docs/reference/changelog.md index 8045e655..5211e960 100644 --- a/docs/reference/changelog.md +++ b/docs/reference/changelog.md @@ -5,7 +5,9 @@ This document outlines the list of changes to ridgeplot between each release. Fo Unreleased changes ------------------ -- ... +### CI/CD + +- pre-commit autoupdate ({gh-pr}`374`) ---