diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2015-12-31 13:57:13 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2015-12-31 13:57:13 +0100 |
commit | f68cadd7b1c4f5c4d4d94acce63f86d279925a7a (patch) | |
tree | f574eafc14cafacde05209d1389dd2bc6ad04fa2 /numpy/testing | |
parent | b057b7a22e6d9a290d607971cd5365ce75872d03 (diff) | |
download | numpy-f68cadd7b1c4f5c4d4d94acce63f86d279925a7a.tar.gz |
DOC: update min nose version in import error message, and add note to README
Addresses comment in gh-4074.
Diffstat (limited to 'numpy/testing')
-rw-r--r-- | numpy/testing/nosetester.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |