From 5b9b9bea32bd7c2528baa8fd97a002c6f4008314 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jan 2023 11:00:44 +0000 Subject: [PATCH] Update click requirement from ~=7.0 to ~=8.1 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/7.0...8.1.3) --- updated-dependencies: - dependency-name: click dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 968693c..7ee55f5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -Click~=7.0 +Click~=8.1 gtrending>=0.3.0,<1.0.0 requests>=2.22.0,<3.0.0 rich>=4.0.0,<14.0.0 diff --git a/setup.py b/setup.py index 93b30e9..27003a6 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ packages=["starcli"], include_package_data=True, install_requires=[ - "Click>=7.0,<8.0", + "Click>=7.0,<9.0", "gtrending>=0.3.0,<1.0.0", "requests>=2.22.0,<3.0.0", "rich>=4.0.0,<14.0.0",