[Numpy-discussion] What happened to numpy.testing.Tester ?

2008-08-06 Thread Robert Pyle
Hi all,

My machine: Mac dual G5, OSX 10.5.4, Python 2.5.2 (r252:60911, Feb 22  
2008, 07:57:53), numpy 1.1.1

After considerable agony, I succeeded in building and installing scipy  
from SVN, only to be told upon importing it:

Traceback (most recent call last):
   File stdin, line 1, in module
   File /Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/site-packages/scipy/__init__.py, line 86, in module
 from numpy.testing import Tester
ImportError: cannot import name Tester

A message here from Alan McIntyre on June 20, said, in part:  
NoseTester will still be made available as numpy.testing.Tester.

It appears that each of the seemingly innumerable __init__.py files  
throughout the scipy sources calls for numpy.testing.Tester.

Should I ask over on the scipy list as well?  Is there some trivial  
change that will fake out either numpy or scipy into thinking all is  
well?

Thanks.

Bob Pyle

___
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://projects.scipy.org/mailman/listinfo/numpy-discussion


Re: [Numpy-discussion] What happened to numpy.testing.Tester ?

2008-08-06 Thread Alan McIntyre
On Wed, Aug 6, 2008 at 3:57 PM, Robert Pyle [EMAIL PROTECTED] wrote:
 My machine: Mac dual G5, OSX 10.5.4, Python 2.5.2 (r252:60911, Feb 22
 2008, 07:57:53), numpy 1.1.1

 After considerable agony, I succeeded in building and installing scipy
 from SVN, only to be told upon importing it:

 Traceback (most recent call last):
   File stdin, line 1, in module
   File /Library/Frameworks/Python.framework/Versions/2.5/lib/
 python2.5/site-packages/scipy/__init__.py, line 86, in module
 from numpy.testing import Tester
 ImportError: cannot import name Tester

 A message here from Alan McIntyre on June 20, said, in part:
 NoseTester will still be made available as numpy.testing.Tester.

 It appears that each of the seemingly innumerable __init__.py files
 throughout the scipy sources calls for numpy.testing.Tester.

 Should I ask over on the scipy list as well?  Is there some trivial
 change that will fake out either numpy or scipy into thinking all is
 well?

You will actually need to use NumPy from svn as well, since 1.1.1
didn't have NoseTester (SciPy 0.7 will require NumPy 1.2).
___
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://projects.scipy.org/mailman/listinfo/numpy-discussion


Re: [Numpy-discussion] What happened to numpy.testing.Tester ?

2008-08-06 Thread Robert Pyle

On Aug 6, 2008, at 4:17 PM, Alan McIntyre wrote:

 You will actually need to use NumPy from svn as well, since 1.1.1
 didn't have NoseTester (SciPy 0.7 will require NumPy 1.2).

Thanks.  I can now import scipy, but I'm puzzled by the following:

Python 2.5.2 (r252:60911, Feb 22 2008, 07:57:53)
[GCC 4.0.1 (Apple Computer, Inc. build 5363)] on darwin
Type help, copyright, credits or license for more information.
  import numpy as np
  np.__version__
'1.2.0.dev5616'
  import np.testing.Tester
Traceback (most recent call last):
   File stdin, line 1, in module
ImportError: No module named np.testing.Tester
  import scipy
  scipy.__version__
'0.7.0.dev4603'
 

How come 'import np.testing.Tester' fails, but scipy imports okay even  
though it used to fail with a complaint about the absence of  
np.testing.Tester?

Bob

___
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://projects.scipy.org/mailman/listinfo/numpy-discussion


Re: [Numpy-discussion] What happened to numpy.testing.Tester ?

2008-08-06 Thread robert . kern
Tester is a class, not a module. Try from numpy.testing import Tester.

On 2008-08-06, Robert Pyle [EMAIL PROTECTED] wrote:

 On Aug 6, 2008, at 4:17 PM, Alan McIntyre wrote:

 You will actually need to use NumPy from svn as well, since 1.1.1
 didn't have NoseTester (SciPy 0.7 will require NumPy 1.2).

 Thanks.  I can now import scipy, but I'm puzzled by the following:

 Python 2.5.2 (r252:60911, Feb 22 2008, 07:57:53)
 [GCC 4.0.1 (Apple Computer, Inc. build 5363)] on darwin
 Type help, copyright, credits or license for more information.
   import numpy as np
   np.__version__
 '1.2.0.dev5616'
   import np.testing.Tester
 Traceback (most recent call last):
File stdin, line 1, in module
 ImportError: No module named np.testing.Tester
   import scipy
   scipy.__version__
 '0.7.0.dev4603'
  

 How come 'import np.testing.Tester' fails, but scipy imports okay even
 though it used to fail with a complaint about the absence of
 np.testing.Tester?

 Bob

 ___
 Numpy-discussion mailing list
 Numpy-discussion@scipy.org
 http://projects.scipy.org/mailman/listinfo/numpy-discussion



-- 
Robert Kern

I have come to believe that the whole world is an enigma, a harmless
enigma that is made terrible by our own mad attempt to interpret it as
though it had an underlying truth.
  -- Umberto Eco
___
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://projects.scipy.org/mailman/listinfo/numpy-discussion