<br><br><div class="gmail_quote">On Tue, Sep 13, 2011 at 6:20 PM, Ralf Gommers <span dir="ltr"><<a href="mailto:ralf.gommers@googlemail.com">ralf.gommers@googlemail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hi Christoph,<br><br><br><div class="gmail_quote"><div class="im">On Tue, Sep 13, 2011 at 12:21 AM, Christoph Gohlke <span dir="ltr"><<a href="mailto:cgohlke@uci.edu" target="_blank">cgohlke@uci.edu</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div><br>
<br>
On 9/12/2011 2:36 PM, Ralf Gommers wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi,<br>
<br>
I am pleased to announce the availability of the first beta release of<br>
SciPy 0.10.0. For this release over a 100 tickets and pull requests have<br>
been closed, and many new features have been added. Some of the<br>
highlights are:<br>
<br>
   - support for Bento as a build system for scipy<br>
   - generalized and shift-invert eigenvalue problems in sparse.linalg<br>
   - addition of discrete-time linear systems in the signal module<br>
<br>
Sources and binaries can be found at<br>
<a href="https://sourceforge.net/projects/scipy/files/scipy/0.10.0b1/" target="_blank">https://sourceforge.net/<u></u>projects/scipy/files/scipy/0.<u></u>10.0b1/</a>, release<br>
notes are copied below.<br>
Binaries for Python 2.x are available, on Python 3 there are a few known<br>
problems that should be solved first. When they are, a second beta will<br>
follow.<br>
<br>
Please try this release and report problems on the mailing list.<br>
<br>
Cheers,<br>
Ralf<br>
<br>
</blockquote>
<br></div>
Hi Ralf,<br>
<br>
regarding Python 3:<br><br></blockquote></div><div> <br></div><div class="im"><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204, 204, 204);padding-left:1ex">

2) On my system, 2to3 did not correctly convert all imports in special.__init__.py, <a href="http://special.add_newdocs.py" target="_blank">special.add_newdocs.py</a>, and <a href="http://linalg.misc.py" target="_blank">linalg.misc.py</a>. I needed to manually change<br>


<br>
-from _logit import logit, expit<br>
+from ._logit import logit, expit<br>
<br>
-import fblas<br>
+from . import fblas<br></blockquote></div><div><br>I noticed that too. "from . import foo" is not valid python 2.4 syntax, so I hope there's an easy way we can make 2to3 see the error of its ways.<br> <br>
</div></div></blockquote><div>Found it, in tools/py3tool.py<br><br>diff --git a/tools/py3tool.py b/tools/py3tool.py<br>index 1360c03..fa96066 100755<br>--- a/tools/py3tool.py<br>+++ b/tools/py3tool.py<br>@@ -162,6 +162,7 @@ def custom_mangling(filename):<br>
         os.path.join('linalg', 'lapack.py'),<br>         os.path.join('linalg', 'flinalg.py'),<br>         os.path.join('linalg', 'iterative.py'),<br>+        os.path.join('linalg', 'misc.py'),<br>
         os.path.join('lib', 'blas', '__init__.py'),<br>         os.path.join('lib', 'lapack', '__init__.py'),<br>         os.path.join('ndimage', 'filters.py'),<br>
@@ -180,6 +181,7 @@ def custom_mangling(filename):<br>         os.path.join('signal', 'signaltools.py'),<br>         os.path.join('signal', 'fir_filter_design.py'),<br>         os.path.join('special', '__init__.py'),<br>
+        os.path.join('special', 'add_newdocs.py'),<br>         os.path.join('special', 'basic.py'),<br>         os.path.join('special', 'orthogonal.py'),<br>         os.path.join('spatial', '__init__.py'),<br>
@@ -205,7 +207,7 @@ def custom_mangling(filename):<br>         for mod in ['_vq', '_hierarchy_wrap', '_fftpack', 'convolve',<br>                     '_flinalg', 'fblas', 'flapack', 'cblas', 'clapack',<br>
                     'calc_lwork', '_cephes', 'specfun', 'orthogonal_eval',<br>-                    'lambertw', 'ckdtree', '_distance_wrap',<br>+                    'lambertw', 'ckdtree', '_distance_wrap', '_logit',<br>
                     '_minpack', '_zeros', '_lbfgsb', '_cobyla', '_slsqp',<br>                     '_nnls',<br>                     'sigtools', 'spline', 'spectral',<br>
<br>Ralf <br><br></div></div>