Limit paramiko to < 2.4.0 for python 2.6.

This commit is contained in:
Matt Clay 2017-11-20 19:45:13 -08:00
parent d9a52db17d
commit 5f5e150771

View file

@ -9,3 +9,4 @@ isort < 4.2.8 # 4.2.8 changes import sort order requirements which breaks previo
pycrypto >= 2.6 # Need features found in 2.6 and greater pycrypto >= 2.6 # Need features found in 2.6 and greater
ncclient >= 0.5.2 # Need features added in 0.5.2 and greater ncclient >= 0.5.2 # Need features added in 0.5.2 and greater
idna < 2.6 # requests requires idna < 2.6, but cryptography will cause the latest version to be installed instead idna < 2.6 # requests requires idna < 2.6, but cryptography will cause the latest version to be installed instead
paramiko < 2.4.0 ; python_version < '2.7' # paramiko 2.4.0 drops support for python 2.6