33 lines
982 B
Diff
33 lines
982 B
Diff
From 57c29cf8128373e4317f89beec4fe9181c485319 Mon Sep 17 00:00:00 2001
|
|
From: liuchao <liuchao173@huawei.com>
|
|
Date: Sat, 29 Feb 2020 09:52:02 +0800
|
|
Subject: [PATCH] modify the limit maximum version
|
|
|
|
---
|
|
setup.py | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index e0a26b0..aec9e3a 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -32,11 +32,11 @@ def find_version(*file_paths):
|
|
install_requires = [
|
|
'cached-property >= 1.2.0, < 2',
|
|
'docopt >= 0.6.1, < 0.7',
|
|
- 'PyYAML >= 3.10, < 4',
|
|
- 'requests >= 2.6.1, != 2.11.0, != 2.12.2, != 2.18.0, < 2.19',
|
|
- 'texttable >= 0.9.0, < 0.10',
|
|
+ 'PyYAML >= 3.10, < 5.4',
|
|
+ 'requests >= 2.6.1, != 2.11.0, != 2.12.2, != 2.18.0, < 2.22',
|
|
+ 'texttable >= 0.9.0, < 1.50',
|
|
'websocket-client >= 0.32.0, < 1.0',
|
|
- 'docker >= 3.4.1, < 4.0',
|
|
+ 'docker >= 3.4.1, < 4.1',
|
|
'dockerpty >= 0.4.1, < 0.5',
|
|
'six >= 1.3.0, < 2',
|
|
'jsonschema >= 2.5.1, < 3',
|
|
--
|
|
1.8.3.1
|
|
|