diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2018-04-19 13:36:52 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-04-19 13:36:52 -0700 |
commit | f68f3b5526db620fd815589312c453c8a83962b1 (patch) | |
tree | 3c662d7014da1bd8c711bb59ed214784e36f3f5f /sites/www | |
parent | 283cb267ac2ee2967f14bd9c78a1addb47c26343 (diff) |
Add explicit mention of bcrypt and pynacl to 2.x installation docs.
Re #1191
Diffstat (limited to 'sites/www')
-rw-r--r-- | sites/www/installing.rst | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sites/www/installing.rst b/sites/www/installing.rst index e6db2dca..524bd89c 100644 --- a/sites/www/installing.rst +++ b/sites/www/installing.rst @@ -22,8 +22,12 @@ via `pip <http://pip-installer.org>`_:: We currently support **Python 2.7, 3.4+, and PyPy**. Users on Python 2.6 or older (or 3.3 or older) are urged to upgrade. -Paramiko has only one direct hard dependency: the Cryptography library. See -:ref:`cryptography`. +Paramiko has only a few direct dependencies: + +- The big one, with its own sub-dependencies, is Cryptography; see :ref:`its + specific note below <cryptography>` for more details. +- `bcrypt <https://pypi.org/project/bcrypt/>`_, for Ed25519 key support; +- `pynacl <https://pypi.org/project/PyNaCl/>`_, also for Ed25519 key support. If you need GSS-API / SSPI support, see :ref:`the below subsection on it <gssapi>` for details on its optional dependencies. |