@@ -955,9 +955,9 @@ def set_default_verify_paths(self):
955
955
the ``[email protected] `` `Homebrew <https://brew.sh>`_ formula installed
956
956
in the default location.
957
957
* Windows will not work.
958
- * manylinux1 cryptography wheels will work on most common Linux
958
+ * manylinux cryptography wheels will work on most common Linux
959
959
distributions in pyOpenSSL 17.1.0 and above. pyOpenSSL detects the
960
- manylinux1 wheel and attempts to load roots via a fallback path.
960
+ manylinux wheel and attempts to load roots via a fallback path.
961
961
962
962
:return: None
963
963
"""
@@ -982,13 +982,13 @@ def set_default_verify_paths(self):
982
982
default_dir = _ffi .string (_lib .X509_get_default_cert_dir ())
983
983
default_file = _ffi .string (_lib .X509_get_default_cert_file ())
984
984
# Now we check to see if the default_dir and default_file are set
985
- # to the exact values we use in our manylinux1 builds. If they are
985
+ # to the exact values we use in our manylinux builds. If they are
986
986
# then we know to load the fallbacks
987
987
if (
988
988
default_dir == _CRYPTOGRAPHY_MANYLINUX_CA_DIR
989
989
and default_file == _CRYPTOGRAPHY_MANYLINUX_CA_FILE
990
990
):
991
- # This is manylinux1 , let's load our fallback paths
991
+ # This is manylinux , let's load our fallback paths
992
992
self ._fallback_default_verify_paths (
993
993
_CERTIFICATE_FILE_LOCATIONS , _CERTIFICATE_PATH_LOCATIONS
994
994
)
@@ -1007,7 +1007,7 @@ def _check_env_vars_set(self, dir_env_var, file_env_var):
1007
1007
def _fallback_default_verify_paths (self , file_path , dir_path ):
1008
1008
"""
1009
1009
Default verify paths are based on the compiled version of OpenSSL.
1010
- However, when pyca/cryptography is compiled as a manylinux1 wheel
1010
+ However, when pyca/cryptography is compiled as a manylinux wheel
1011
1011
that compiled location can potentially be wrong. So, like Go, we
1012
1012
will try a predefined set of paths and attempt to load roots
1013
1013
from there.
0 commit comments