diff options
-rw-r--r-- | cryptography/bindings/openssl/api.py | 6 |
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") |