| |
@@ -0,0 +1,39 @@
|
| |
+ From 341c948df1da24994f4901a571e764a0fd3e3ef3 Mon Sep 17 00:00:00 2001
|
| |
+ From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
|
| |
+ Date: Wed, 30 Jun 2021 02:01:49 +0200
|
| |
+ Subject: [PATCH] Allow click 8
|
| |
+
|
| |
+ ---
|
| |
+ pyproject.toml | 2 +-
|
| |
+ setup.py | 2 +-
|
| |
+ 2 files changed, 2 insertions(+), 2 deletions(-)
|
| |
+
|
| |
+ diff --git a/pyproject.toml b/pyproject.toml
|
| |
+ index 6ba7f62..84c0fb0 100644
|
| |
+ --- a/pyproject.toml
|
| |
+ +++ b/pyproject.toml
|
| |
+ @@ -38,7 +38,7 @@ bravado = "^10.6.0 || ^11"
|
| |
+ requests = "^2.20.0"
|
| |
+ requests-gssapi = "^1.2.1"
|
| |
+ cryptography = {version = "^2.3 || ^3", optional = true}
|
| |
+ -click = {version = "^6.7 || ^7", optional = true}
|
| |
+ +click = {version = "^6.7 || ^7 || ^8", optional = true}
|
| |
+ toml = "^0.10.0"
|
| |
+
|
| |
+ [tool.poetry.dev-dependencies]
|
| |
+ diff --git a/setup.py b/setup.py
|
| |
+ index fff3402..1d363ee 100644
|
| |
+ --- a/setup.py
|
| |
+ +++ b/setup.py
|
| |
+ @@ -18,7 +18,7 @@ install_requires = \
|
| |
+ 'toml>=0.10.0,<0.11.0']
|
| |
+
|
| |
+ extras_require = \
|
| |
+ -{'cli': ['cryptography>=2.3,<4', 'click>=6.7,<8']}
|
| |
+ +{'cli': ['cryptography>=2.3,<4', 'click>=6.7,<9']}
|
| |
+
|
| |
+ entry_points = \
|
| |
+ {'console_scripts': ['fasjson-client = fasjson_client.cli:cli']}
|
| |
+ --
|
| |
+ 2.32.0
|
| |
+
|
| |