From 2a6547ca608644a8ed583996e74f86792959263c Mon Sep 17 00:00:00 2001 From: naveenarun Date: Wed, 21 Sep 2016 23:31:51 -0500 Subject: [PATCH] Update somethingaboutorange URL to nose.readthedocs.io --- INSTALL.rst.txt | 2 +- doc/TESTS.rst.txt | 2 +- numpy/testing/utils.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/INSTALL.rst.txt b/INSTALL.rst.txt index 426105929ff6..8b135e3090d1 100644 --- a/INSTALL.rst.txt +++ b/INSTALL.rst.txt @@ -34,7 +34,7 @@ Building NumPy requires the following software installed: This is required for testing numpy, but not for using it. Python__ http://www.python.org -nose__ http://somethingaboutorange.com/mrl/projects/nose/ +nose__ http://nose.readthedocs.io .. note:: diff --git a/doc/TESTS.rst.txt b/doc/TESTS.rst.txt index 7028ca57a1af..68b0eace4a78 100644 --- a/doc/TESTS.rst.txt +++ b/doc/TESTS.rst.txt @@ -9,7 +9,7 @@ Introduction '''''''''''' SciPy uses the `Nose testing system -`__, with some +`__, with some minor convenience features added. Nose is an extension of the unit testing framework offered by `unittest.py `__. Our goal is that diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index 683a4f0a61ea..cb39a9b4a26f 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -64,7 +64,7 @@ def import_nose(): if not nose_is_good: msg = ('Need nose >= %d.%d.%d for tests - see ' - 'http://somethingaboutorange.com/mrl/projects/nose' % + 'http://nose.readthedocs.io' % minimum_nose_version) raise ImportError(msg)