Skip to content

Commit 62ddd97

Browse files
Merge pull request #1044 from camporter/limit_click_version_incompatability
Don't allow click>=7 for now
2 parents 1a58b24 + 7df3b1d commit 62ddd97

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ SoftLayer API Python Client
1717

1818

1919
This library provides a simple Python client to interact with `SoftLayer's
20-
XML-RPC API <http://developer.softlayer.com/reference/softlayerapi>`_.
20+
XML-RPC API <https://softlayer.github.io/reference/softlayerapi>`_.
2121

2222
A command-line interface is also included and can be used to manage various
2323
SoftLayer products and services.
@@ -120,7 +120,7 @@ If you are using the library directly in python, you can do something like this.
120120

121121
System Requirements
122122
-------------------
123-
* Python 2.7, 3.3, 3.4, 3.5 or 3.6.
123+
* Python 2.7, 3.3, 3.4, 3.5, 3.6, or 3.7.
124124
* A valid SoftLayer API username and key.
125125
* A connection to SoftLayer's private network is required to use
126126
our private network API endpoints.
@@ -129,7 +129,7 @@ Python Packages
129129
---------------
130130
* six >= 1.7.0
131131
* prettytable >= 0.7.0
132-
* click >= 5
132+
* click >= 5, < 7
133133
* requests >= 2.18.4
134134
* prompt_toolkit >= 0.53
135135
* pygments >= 2.0.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
install_requires=[
3333
'six >= 1.7.0',
3434
'ptable >= 0.9.2',
35-
'click >= 5',
35+
'click >= 5, < 7',
3636
'requests >= 2.18.4',
3737
'prompt_toolkit >= 0.53',
3838
'pygments >= 2.0.0',

tools/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
requests >= 2.18.4
2-
click >= 5
2+
click >= 5, < 7
33
prettytable >= 0.7.0
44
six >= 1.7.0
55
prompt_toolkit

0 commit comments

Comments
 (0)