-
Notifications
You must be signed in to change notification settings - Fork 421
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dependency to be on development version of cryptography
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env python | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (C) Jean-Paul Calderone 2008-2014, All rights reserved | ||
|
@@ -34,7 +34,7 @@ | |
maintainer_email = '[email protected]', | ||
url = 'https://github.com/pyca/pyopenssl', | ||
license = 'APL2', | ||
install_requires=["cryptography>=0.5", "six>=1.5.2"], | ||
install_requires=["cryptography>=0.5.dev1", "six>=1.5.2"], | ||
long_description = """\ | ||
High-level wrapper around a subset of the OpenSSL library, includes | ||
* SSL.Connection objects, wrapping the methods of Python's portable | ||
|