Latest cryptography depends on enum34.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
This commit is contained in:
Daira Hopwood
2014-12-26 22:29:42 +00:00
committed by Brian Warner
parent ef455df990
commit e73d76eb1b
2 changed files with 14 additions and 3 deletions

View File

@ -204,6 +204,7 @@ if _can_use_pyOpenSSL_0_14:
"cryptography",
"cffi >= 0.8", # latest cryptography depends on this version
"six >= 1.4.1", # latest cryptography depends on this version
"enum34", # latest cryptography depends on this
"pycparser", # cffi depends on this
]
@ -211,6 +212,7 @@ if _can_use_pyOpenSSL_0_14:
('cryptography', 'cryptography'),
('cffi', 'cffi'),
('six', 'six'),
('enum34', 'enum'),
('pycparser', 'pycparser'),
]
else: