OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
lib
/
python3.6
/
dist-packages
/
numpy
/
tests
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
__init__.py
0 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📁
__pycache__
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
test_ctypeslib.py
11.88 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_matlib.py
1.81 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_numpy_version.py
581 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_public_api.py
15.12 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_reloading.py
1.9 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_scripts.py
1.49 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_warnings.py
2.23 KB
10/28/2024 05:59:24 AM
rw-r--r--
Editing: test_numpy_version.py
Close
import re import numpy as np from numpy.testing import assert_ def test_valid_numpy_version(): # Verify that the numpy version is a valid one (no .post suffix or other # nonsense). See gh-6431 for an issue caused by an invalid version. version_pattern = r"^[0-9]+\.[0-9]+\.[0-9]+(|a[0-9]|b[0-9]|rc[0-9])" dev_suffix = r"(\.dev0\+([0-9a-f]{7}|Unknown))" if np.version.release: res = re.match(version_pattern, np.__version__) else: res = re.match(version_pattern + dev_suffix, np.__version__) assert_(res is not None, np.__version__)