From b351a171f4783de5d676e73825196c033f1fde28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Apr 2022 22:01:47 +0000 Subject: [PATCH] chore: update click requirement from ~=8.0.4 to ~=8.1.2 in /shared 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.rst) - [Commits](https://github.com/pallets/click/compare/8.0.4...8.1.2) --- updated-dependencies: - dependency-name: click dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- shared/requirements.txt | 2 +- shared/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/requirements.txt b/shared/requirements.txt index 8e1bce93fb..84c50cd0e6 100644 --- a/shared/requirements.txt +++ b/shared/requirements.txt @@ -1,6 +1,6 @@ # This file is auto-generated by tools/extract-requirements.sh. # Please do not edit this file, edit the setup.py file! -click~=8.0.4 +click~=8.1.2 loguru==0.6.0 pydantic pyyaml diff --git a/shared/setup.py b/shared/setup.py index 3dc7f30de1..61a9a2f885 100644 --- a/shared/setup.py +++ b/shared/setup.py @@ -17,7 +17,7 @@ packages=["libretime_shared"], package_data={"": ["py.typed"]}, install_requires=[ - "click~=8.0.4", + "click>=8.0.4,<8.2.0", "loguru==0.6.0", "pydantic", "pyyaml",