[SciPy-user] Re: [SciPy-dev] Scheduled release

Arnd Baecker arnd.baecker at web.de
Fri Sep 26 11:19:25 EDT 2003


> On Thu, 25 Sep 2003, Travis Oliphant wrote:
>
> > The release of scipy is coming along, but I think we need to postpone
> > the release until Tuesday as I have found some bugs in special that need
> > addressing.

With python 2.3.1 and a scipy CVS of around half an hour ago,
scipy.__version__: '0.2.0_alpha_217.4224'
I get the following error with scipy.test(1)

======================================================================
FAIL: check_round (test_basic.test_round)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"/home/python/PYTHON_TST/lib/python2.3/site-packages/scipy/special/tests/test_basic.py",
line 1769, in check_round
    assert_array_equal(rnd,rndrl)
  File
"/home/python/PYTHON_TST/lib/python2.3/site-packages/scipy_test/testing.py",
line 390, in assert_array_equal
    assert alltrue(ravel(reduced)),\
AssertionError:
Arrays are not equal:



This seems weird to me as the individual lines
  from scipy_test.testing import assert_array_equal, assert_equal
  rnd = map(int,(round(10.1),round(10.4),round(10.5),round(10.6)))
  rndrl = (10,10,11,11)
  assert_array_equal(rnd,rndrl)
work fine ?

Anyway, presumably you have spotted this already ...

Arnd










More information about the SciPy-User mailing list