diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | numpy/testing/nosetester.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ More information can be found at the website: * http://www.numpy.org -After installation, tests can be run with: +After installation, tests can be run (if ``nose`` is installed) with: python -c 'import numpy; numpy.test()' diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py index 6cf7defab..42113676a 100644 --- a/numpy/testing/nosetester.py +++ b/numpy/testing/nosetester.py @@ -57,7 +57,7 @@ def import_nose(): """ Import nose only when needed. """ fine_nose = True - minimum_nose_version = (0, 10, 0) + minimum_nose_version = (1, 0, 0) try: import nose except ImportError: |