From 959e518f5547f49446736f57138251bbe97882ac Mon Sep 17 00:00:00 2001 From: Omer Tuchfeld Date: Mon, 2 Aug 2021 20:29:02 +0200 Subject: [PATCH] Upgrade skipper click version to latest major Since skipper is useful to be installed as a system-level package and not just in a virtualenv, the older click version conflicts with other utilities that use newer version of click (such as Black) This upgrade should fix that conflict. The breaking changes between 6.0 -> 7.0 were changing underscores to dashes by default. Skipper doesn't have any underscores in its subcommands The breaking changes between 7.0 and 8.0 seem to be just dropping support for Python 3.5 and Python 2.7 So I think this upgrade should be rather seamless --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 037601e..359fae7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ PyYAML>=3.11 -click==6.7 +click==8.0 requests>=2.6.0 tabulate>=0.7.5 six>=1.10.0