diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2019-05-31 21:38:28 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2019-05-31 21:38:28 -0400 |
commit | 0461162f8977d97661ef0ee2be086b85347729b0 (patch) | |
tree | a322d4356749bb089f09598f26766f4d20a66d1f /sites/www/installing.rst | |
parent | fe9cd886eda6ee2781249839a6e011acad642f7c (diff) |
Documentation of the need for pyasn1 for gssapi seems to have been omitted a while
Diffstat (limited to 'sites/www/installing.rst')
-rw-r--r-- | sites/www/installing.rst | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/sites/www/installing.rst b/sites/www/installing.rst index 90383c15..5fde1c27 100644 --- a/sites/www/installing.rst +++ b/sites/www/installing.rst @@ -96,18 +96,20 @@ Optional dependencies for GSS-API / SSPI / Kerberos =================================================== In order to use GSS-API/Kerberos & related functionality, a couple of -additional dependencies are required (these are not listed in our ``setup.py`` -due to their infrequent utility & non-platform-agnostic requirements): +additional dependencies are required: * It hopefully goes without saying but **all platforms** need **a working installation of GSS-API itself**, e.g. Heimdal. -* **Unix** needs `gssapi <https://pypi.org/project/gssapi/>`__ ``1.0.0`` or - better. +* **Unix** needs: - * An alternative is the `python-gssapi - <https://pypi.org/project/python-gssapi/>`_ library (``0.6.1`` or above), - though it is no longer maintained upstream, and Paramiko's support for its - API may eventually become deprecated. + * `gssapi <https://pypi.org/project/gssapi/>`__ ``1.0.0`` or better. + + * An alternative is the `python-gssapi + <https://pypi.org/project/python-gssapi/>`_ library (``0.6.1`` or above), + though it is no longer maintained upstream, and Paramiko's support for + its API may eventually become deprecated. + + * `pyasn1 <https://pypi.org/project/pyasn1/>`_ ``0.7.1`` or later. * **Windows** needs `pywin32 <https://pypi.python.org/pypi/pywin32>`_ ``2.1.8`` or better. |