diff options
Diffstat (limited to 'numpy/tests/test_scripts.py')
-rw-r--r-- | numpy/tests/test_scripts.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/tests/test_scripts.py b/numpy/tests/test_scripts.py index e67a82947..5aa8191bb 100644 --- a/numpy/tests/test_scripts.py +++ b/numpy/tests/test_scripts.py @@ -24,8 +24,8 @@ def find_f2py_commands(): else: # Three scripts are installed in Unix-like systems: # 'f2py', 'f2py{major}', and 'f2py{major.minor}'. For example, - # if installed with python3.7 the scripts would be named - # 'f2py', 'f2py3', and 'f2py3.7'. + # if installed with python3.9 the scripts would be named + # 'f2py', 'f2py3', and 'f2py3.9'. version = sys.version_info major = str(version.major) minor = str(version.minor) |