From 37c69f973125afe54a64869b82a3dc4eab630cf9 Mon Sep 17 00:00:00 2001 From: Timothy Allen Date: Mon, 9 Mar 2020 13:15:31 -0400 Subject: [PATCH] Click 7.1 breaks django-click `click` 7.1 dropped a few hours ago, and out of the box, creates errors with `django-click`: `module 'click' has no attribute '__all__'` This will keep deployments from breaking in the meantime. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 2f16af8..eb4c69b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ six>=1.9.0 -click>5.0 +click>5.0,<7.1