Skip to content

Commit bd32f68

Browse files
Correct requirements list
Includes decorator and six in the README, and also updates setup.py to ensure we have a good version of six. Closes: #86
1 parent b342935 commit bd32f68

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ Basic
3434

3535
* either the `enum34` Python package or Python 3.4+
3636

37+
* the `six` and `decorator` python packages
38+
3739
Compiling from Scratch
3840
----------------------
3941

@@ -59,6 +61,8 @@ Easy Way
5961
From the Git Repo
6062
-----------------
6163

64+
After being sure to install all the requirements,
65+
6266
.. code-block:: bash
6367

6468
$ git clone https://github.com/pythongssapi/python-gssapi.git

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def gssapi_modules(lst):
208208

209209
install_requires = [
210210
'decorator',
211-
'six'
211+
'six >= 1.4.0'
212212
]
213213
if sys.version_info < (3, 4):
214214
install_requires.append('enum34')

0 commit comments

Comments
 (0)