Skip to content

Commit

Permalink
Correct requirements list
Browse files Browse the repository at this point in the history
Includes decorator and six in the README, and also updates setup.py to ensure
we have a good version of six.

Closes: #86
  • Loading branch information
frozencemetery committed Nov 19, 2015
1 parent b342935 commit bd32f68
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ Basic

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

* the `six` and `decorator` python packages

Compiling from Scratch
----------------------

Expand All @@ -59,6 +61,8 @@ Easy Way
From the Git Repo
-----------------

After being sure to install all the requirements,

.. code-block:: bash

$ git clone https://github.com/pythongssapi/python-gssapi.git
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def gssapi_modules(lst):

install_requires = [
'decorator',
'six'
'six >= 1.4.0'
]
if sys.version_info < (3, 4):
install_requires.append('enum34')
Expand Down

0 comments on commit bd32f68

Please sign in to comment.