We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b342935 commit bd32f68Copy full SHA for bd32f68
README.txt
@@ -34,6 +34,8 @@ Basic
34
35
* either the `enum34` Python package or Python 3.4+
36
37
+* the `six` and `decorator` python packages
38
+
39
Compiling from Scratch
40
----------------------
41
@@ -59,6 +61,8 @@ Easy Way
59
61
From the Git Repo
60
62
-----------------
63
64
+After being sure to install all the requirements,
65
66
.. code-block:: bash
67
68
$ git clone https://github.com/pythongssapi/python-gssapi.git
setup.py
@@ -208,7 +208,7 @@ def gssapi_modules(lst):
208
209
install_requires = [
210
'decorator',
211
- 'six'
+ 'six >= 1.4.0'
212
]
213
if sys.version_info < (3, 4):
214
install_requires.append('enum34')
0 commit comments