8000 Update outdated Nose URL to nose.readthedocs.io by naveenarun · Pull Request #8081 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

Update outdated Nose URL to nose.readthedocs.io #8081

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 22, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion INSTALL.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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::
Expand Down
2 changes: 1 addition & 1 deletion doc/TESTS.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Introduction
''''''''''''

SciPy uses the `Nose testing system
<http://www.somethingaboutorange.com/mrl/projects/nose>`__, with some
<http://nose.readthedocs.io>`__, with some
minor convenience features added. Nose is an extension of the unit
testing framework offered by `unittest.py
<http://docs.python.org/lib/module-unittest.html>`__. Our goal is that
Expand Down
2 changes: 1 addition & 1 deletion numpy/testing/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
0