summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--numpy/testing/nosetester.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index e63d2718e..6031279b0 100644
--- a/README.md
+++ b/README.md
@@ -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: