aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-09-30 18:09:24 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-09-30 18:09:24 -0700
commit32ecb669c6b0c3b5eed25121f977d9bd9e983662 (patch)
tree4399eb769b44dc42cad373373d9c31f9a033e75d
parenta4688e23bd92fbed535b8e4fd2859b42641a8f3c (diff)
downloadcryptography-32ecb669c6b0c3b5eed25121f977d9bd9e983662.tar.gz
cryptography-32ecb669c6b0c3b5eed25121f977d9bd9e983662.tar.bz2
cryptography-32ecb669c6b0c3b5eed25121f977d9bd9e983662.zip
Try without this
-rw-r--r--cryptography/bindings/openssl/api.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/cryptography/bindings/openssl/api.py b/cryptography/bindings/openssl/api.py
index a8cf545c..f4e5ab3d 100644
--- a/cryptography/bindings/openssl/api.py
+++ b/cryptography/bindings/openssl/api.py
@@ -39,10 +39,8 @@ class API(object):
self.ffi.cdef(module.FUNCTIONS)
includes.append(module.INCLUDES)
- extra_compile_args = [
- # Be very loud about everything else
- "-Werror", "-Wconversion",
- ]
+ # Be very loud about everything else
+ extra_compile_args = ["-Werror"]
if sys.platform == "darwin":
# All of OpenSSL is deprecated on OS X, so we ignore this.
extra_compile_args.append("-Wno-deprecated")