Skip to content

Commit

Permalink
DOC: update min nose version in import error message, and add note to…
Browse files Browse the repository at this point in the history
… README

Addresses comment in numpygh-4074.
  • Loading branch information
rgommers committed Dec 31, 2015
1 parent b057b7a commit f68cadd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()'

Expand Down
2 changes: 1 addition & 1 deletion numpy/testing/nosetester.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f68cadd

Please sign in to comment.