From 74e0e25de76c220fa3717fb62c8988b712a0e087 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 18:20:27 +0000 Subject: [PATCH] chore(deps): Update click requirement in /apps/example-app Updates the requirements on [click](https://github.com/pallets/click) to permit the latest version. - [Release notes](https://github.com/pallets/click/releases) - [Changelog](https://github.com/pallets/click/blob/main/CHANGES.md) - [Commits](https://github.com/pallets/click/compare/8.4.2...8.5.0) --- updated-dependencies: - dependency-name: click dependency-version: 8.5.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- apps/example-app/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/example-app/pyproject.toml b/apps/example-app/pyproject.toml index b2fdf34..56fe2f4 100644 --- a/apps/example-app/pyproject.toml +++ b/apps/example-app/pyproject.toml @@ -12,7 +12,7 @@ authors = [ {name = "{{GITHUB_OWNER}}"} ] dependencies = [ - "click>=8.4.2", + "click>=8.5.0", "example-lib" ]