diff options
author | Nikola Forró <nforro@redhat.com> | 2020-10-26 18:54:22 +0100 |
---|---|---|
committer | Nikola Forró <nforro@redhat.com> | 2020-10-29 08:42:35 +0100 |
commit | 14c6e451edcf65d412443c7fb045ab706daf3b73 (patch) | |
tree | dc8a575e4ae7855e2a72e5af248fcfd5ba280b84 /numpy/f2py | |
parent | ab22e0076608f4825bf9a3ca1b6a0a6a7a670d14 (diff) | |
download | numpy-14c6e451edcf65d412443c7fb045ab706daf3b73.tar.gz |
TST: Make test suite work in FIPS (140-2) Mode
Tests using MD5 algorithms fail in FIPS Mode because MD5 is not FIPS
compliant.
Replace MD5 with SHA256 to overcome that.
Signed-off-by: Nikola Forró <nforro@redhat.com>
Diffstat (limited to 'numpy/f2py')
-rw-r--r-- | numpy/f2py/tests/util.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/f2py/tests/util.py b/numpy/f2py/tests/util.py index c5b06697d..d5fa76fed 100644 --- a/numpy/f2py/tests/util.py +++ b/numpy/f2py/tests/util.py @@ -19,8 +19,6 @@ from numpy.compat import asbytes, asstr from numpy.testing import temppath from importlib import import_module -from hashlib import md5 - # # Maintaining a temporary module directory # |