diff options
-rw-r--r-- | README.rst | 7 | ||||
-rw-r--r-- | sites/www/installing.rst | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -136,3 +136,10 @@ There are also unit tests here:: $ pytest Which will verify that most of the core components are working correctly. + +To test Kerberos/GSSAPI, you need a Kerberos environment. On UNIX you can +use the package k5test to setup a Kerberos environment on the fly:: + + $ pip install -r dev-requirements.txt + $ pip install k5test gssapi pyasn1 + $ pytest diff --git a/sites/www/installing.rst b/sites/www/installing.rst index 5fde1c27..44247b5f 100644 --- a/sites/www/installing.rst +++ b/sites/www/installing.rst @@ -102,14 +102,14 @@ additional dependencies are required: installation of GSS-API itself**, e.g. Heimdal. * **Unix** needs: - * `gssapi <https://pypi.org/project/gssapi/>`__ ``1.0.0`` or better. + * `gssapi <https://pypi.org/project/gssapi/>`__ ``1.4.1`` 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. + * `pyasn1 <https://pypi.org/project/pyasn1/>`_ ``0.1.7`` or later. * **Windows** needs `pywin32 <https://pypi.python.org/pypi/pywin32>`_ ``2.1.8`` or better. |