Try without this
diff --git a/cryptography/bindings/openssl/api.py b/cryptography/bindings/openssl/api.py
index a8cf545..f4e5ab3 100644
--- a/cryptography/bindings/openssl/api.py
+++ b/cryptography/bindings/openssl/api.py
@@ -39,10 +39,8 @@
             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")