Re: [Numpy-discussion] multiarray tests skipped under py2.5

2006-10-12 Thread Tim Hochberg
Travis Oliphant wrote:
> Tim Hochberg wrote:
>
>   
>>>  
>>>
>>>
>>>   
>> Still there with a clean checkout. Blech! I hate weird import problems. 
>> I'll try to look into it, but if anyone has any good ideas, let me know
>>  
>>
>> 
> Show  us the errors, I may be able to help.  It's possible some recent 
> changes messed things up.
>   
I just checked in a fix. I think it was some case problem in the paths 
that got set in set_local_path(). In any event, applying normpath to the 
merged path fixed the problem and I didn't feel like pursuing it further.

-tim


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion


Re: [Numpy-discussion] multiarray tests skipped under py2.5

2006-10-12 Thread Travis Oliphant
Tim Hochberg wrote:

>>  
>>
>>
>Still there with a clean checkout. Blech! I hate weird import problems. 
>I'll try to look into it, but if anyone has any good ideas, let me know
>  
>
Show  us the errors, I may be able to help.  It's possible some recent 
changes messed things up.

-Travis


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion


Re: [Numpy-discussion] multiarray tests skipped under py2.5

2006-10-12 Thread Tim Hochberg
Tim Hochberg wrote:
> Gerard Vermeulen wrote:
>   
>> On Thu, 12 Oct 2006 11:04:55 -0700
>> Tim Hochberg <[EMAIL PROTECTED]> wrote:
>>
>>   
>> 
>>> Is any one else seeing the multiarray tests all get skipped because of 
>>> an import error when compiling under python 2.5. Everything else seems 
>>> to work and all the tests go fine under 2.4.
>>> 
>>>   
>> Everything looks fine here:
>>   
>> 
>
> Thanks.
>
> I suppose that means it's either Windows specific or I gummed up my 
> build tree somehow. I'll make a clean checkout and see if it goes away.
>
>   
Still there with a clean checkout. Blech! I hate weird import problems. 
I'll try to look into it, but if anyone has any good ideas, let me know

-tim


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion


Re: [Numpy-discussion] multiarray tests skipped under py2.5

2006-10-12 Thread Tim Hochberg
Gerard Vermeulen wrote:
> On Thu, 12 Oct 2006 11:04:55 -0700
> Tim Hochberg <[EMAIL PROTECTED]> wrote:
>
>   
>> Is any one else seeing the multiarray tests all get skipped because of 
>> an import error when compiling under python 2.5. Everything else seems 
>> to work and all the tests go fine under 2.4.
>> 
>
> Everything looks fine here:
>   

Thanks.

I suppose that means it's either Windows specific or I gummed up my 
build tree somehow. I'll make a clean checkout and see if it goes away.


-tim



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion


Re: [Numpy-discussion] multiarray tests skipped under py2.5

2006-10-12 Thread Gerard Vermeulen
On Thu, 12 Oct 2006 11:04:55 -0700
Tim Hochberg <[EMAIL PROTECTED]> wrote:

> 
> Is any one else seeing the multiarray tests all get skipped because of 
> an import error when compiling under python 2.5. Everything else seems 
> to work and all the tests go fine under 2.4.

Everything looks fine here:
>>> sys.version
'2.5 (r25:51908, Oct  8 2006, 07:23:15) \n[GCC 4.1.1 (Gentoo 4.1.1)]'
>>> np.version.version
'1.0.dev3317'
>>> np.test()
  Found 13 tests for numpy.core.umath
  Found 9 tests for numpy.lib.arraysetops
  Found 36 tests for numpy.core.ma
  Found 3 tests for numpy.fft.helper
  Found 4 tests for numpy.ctypeslib
  Found 2 tests for numpy.lib.polynomial
  Found 8 tests for numpy.core.records
  Found 26 tests for numpy.core.numeric
  Found 5 tests for numpy.distutils.misc_util
  Found 3 tests for numpy.lib.getlimits
  Found 31 tests for numpy.core.numerictypes
  Found 4 tests for numpy.core.scalarmath
  Found 1 tests for numpy.lib.ufunclike
  Found 12 tests for numpy.lib.twodim_base
  Found 47 tests for numpy.lib.shape_base
  Found 4 tests for numpy.lib.index_tricks
  Found 32 tests for numpy.linalg.linalg
  Found 42 tests for numpy.lib.type_check
  Found 176 tests for numpy.core.multiarray
  Found 10 tests for numpy.core.defmatrix
  Found 41 tests for numpy.lib.function_base
  Found 0 tests for __main__
.
--
Ran 509 tests in 0.265s

OK

>>> 

Gerard

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion


[Numpy-discussion] multiarray tests skipped under py2.5

2006-10-12 Thread Tim Hochberg

Is any one else seeing the multiarray tests all get skipped because of 
an import error when compiling under python 2.5. Everything else seems 
to work and all the tests go fine under 2.4.

-tim


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion