From e0c572833a3e2b42cd45237c26a67c6f5be4b09d Mon Sep 17 00:00:00 2001 From: Shivansh-007 Date: Fri, 21 Jan 2022 22:24:57 +0530 Subject: [PATCH] Set `click` lower bound to `8.0.0` (#2791) Closes #2774 --- CHANGES.md | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index a2e5c0a..83117e6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -39,6 +39,7 @@ - All upper version bounds on dependencies have been removed (#2718) - `typing-extensions` is no longer a required dependency in Python 3.10+ (#2772) +- Set `click` lower bound to `8.0.0` (#2791) ### Preview style diff --git a/setup.py b/setup.py index c31baab..c591799 100644 --- a/setup.py +++ b/setup.py @@ -97,7 +97,7 @@ setup( python_requires=">=3.6.2", zip_safe=False, install_requires=[ - "click>=7.1.2", + "click>=8.0.0", "platformdirs>=2", "tomli>=1.1.0", "typed-ast>=1.4.2; python_version < '3.8' and implementation_name == 'cpython'", -- 2.39.2