diff options
Diffstat (limited to 'numpy/testing/pkgtester.py')
-rw-r--r-- | numpy/testing/pkgtester.py | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/numpy/testing/pkgtester.py b/numpy/testing/pkgtester.py index 8b22955fa..51e8d62c4 100644 --- a/numpy/testing/pkgtester.py +++ b/numpy/testing/pkgtester.py @@ -11,17 +11,4 @@ test = Tester().test See nosetester module for test implementation ''' -fine_nose = True -try: - import nose -except ImportError: - fine_nose = False -else: - nose_version = nose.__versioninfo__ - if nose_version[0] < 1 and nose_version[1] < 10: - fine_nose = False - -if fine_nose: - from numpy.testing.nosetester import NoseTester as Tester -else: - from numpy.testing.nulltester import NullTester as Tester +from numpy.testing.nosetester import NoseTester as Tester |