<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy, branch auto</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>MAINT: Fix some typos in a code string and comments</title>
<updated>2016-01-28T05:14:48+00:00</updated>
<author>
<name>Dongjoon Hyun</name>
<email>dongjoon@apache.org</email>
</author>
<published>2016-01-27T23:42:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=73a2fd11a74eedb97201fc8d54ea193e810ea9d3'/>
<id>73a2fd11a74eedb97201fc8d54ea193e810ea9d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: warn in egg_info command if using setuptools.sdist.</title>
<updated>2016-01-27T21:48:34+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2016-01-27T20:59:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=6ae1ff280b3a6c115fe468c79c5cf4f16f998f89'/>
<id>6ae1ff280b3a6c115fe468c79c5cf4f16f998f89</id>
<content type='text'>
Warn in numpy/distutils/command/egg_info.py if using setuptools.sdist.

See gh-7127 for details.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Warn in numpy/distutils/command/egg_info.py if using setuptools.sdist.

See gh-7127 for details.
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Fixed f2py test for non-versioned python executables</title>
<updated>2016-01-25T21:50:12+00:00</updated>
<author>
<name>gfyoung</name>
<email>gfyoung@mit.edu</email>
</author>
<published>2016-01-25T21:07:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=588a1c3e42302418de80eb5f7da4ad375228396e'/>
<id>588a1c3e42302418de80eb5f7da4ad375228396e</id>
<content type='text'>
The 'sys.executable' can come in various names, but
the three main ones are "python", "python{major_version}",
and "python{major_version.minor_version}". The current
version of the f2py test assumes that only the latter
two are used. Since "f2py" is generally versioned,
using the executable basename "python" will make it
impossible to find. This commit fixes that issue
by using a sure-fire way of getting the Python version.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The 'sys.executable' can come in various names, but
the three main ones are "python", "python{major_version}",
and "python{major_version.minor_version}". The current
version of the f2py test assumes that only the latter
two are used. Since "f2py" is generally versioned,
using the executable basename "python" will make it
impossible to find. This commit fixes that issue
by using a sure-fire way of getting the Python version.
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Fixed f2py test for win32 virtualenv</title>
<updated>2016-01-25T19:20:35+00:00</updated>
<author>
<name>gfyoung</name>
<email>gfyoung@mit.edu</email>
</author>
<published>2016-01-25T18:37:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=d3d2f8e92cd08bb64cc520cf714bc70fb31909ce'/>
<id>d3d2f8e92cd08bb64cc520cf714bc70fb31909ce</id>
<content type='text'>
Fixed test_scripts.test_f2py test so that
it can pass correctly on win32 virtualenvs,
in which the Python executable and the
f2py.py file are both in the Scripts
directory.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixed test_scripts.test_f2py test so that
it can pass correctly on win32 virtualenvs,
in which the Python executable and the
f2py.py file are both in the Scripts
directory.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: One element array inputs get one element arrays returned in np.random</title>
<updated>2016-01-24T03:20:20+00:00</updated>
<author>
<name>gfyoung</name>
<email>gfyoung@mit.edu</email>
</author>
<published>2016-01-18T20:29:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=61f872265b67b313058a07533eaed88f4170ff2c'/>
<id>61f872265b67b313058a07533eaed88f4170ff2c</id>
<content type='text'>
Fixes bug in np.random methods that would return scalars
when passed one-element array inputs. This is because
one-element ndarrays can be cast to integers / floats, which
is what functions like PyFloat_AsDouble do before converting
to the intended data type.

This commit changes the check used to determine whether the
inputs are purely scalar by converting all inputs to arrays
and checking if the resulting shape is an empty tuple (scalar)
or not (array).

Closes gh-4263.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes bug in np.random methods that would return scalars
when passed one-element array inputs. This is because
one-element ndarrays can be cast to integers / floats, which
is what functions like PyFloat_AsDouble do before converting
to the intended data type.

This commit changes the check used to determine whether the
inputs are purely scalar by converting all inputs to arrays
and checking if the resulting shape is an empty tuple (scalar)
or not (array).

Closes gh-4263.
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Clarified output size for broadcastable mtrand.pyx functions</title>
<updated>2016-01-23T15:20:06+00:00</updated>
<author>
<name>gfyoung</name>
<email>gfyoung@mit.edu</email>
</author>
<published>2016-01-21T14:38:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=c0980ff9d32e690b13b8d3c6b0a797771ee33b57'/>
<id>c0980ff9d32e690b13b8d3c6b0a797771ee33b57</id>
<content type='text'>
Clarified the output size depending on whether
scalar or non-scalar inputs are passed to
functions in mtrand.pyx that can broadcast
their arguments.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Clarified the output size depending on whether
scalar or non-scalar inputs are passed to
functions in mtrand.pyx that can broadcast
their arguments.
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Added broadcasting tests in test_random.py</title>
<updated>2016-01-23T03:47:13+00:00</updated>
<author>
<name>gfyoung</name>
<email>gfyoung@mit.edu</email>
</author>
<published>2016-01-21T03:30:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=091db7d35249935913c84bfff1bd78da3cb4f556'/>
<id>091db7d35249935913c84bfff1bd78da3cb4f556</id>
<content type='text'>
Added a whole new suite of tests to ensure that
functions in mtrand.pyx which are broadcastable
actually broadcast their arguments properly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added a whole new suite of tests to ensure that
functions in mtrand.pyx which are broadcastable
actually broadcast their arguments properly.
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Update `norm` docstring to include examples that reflect that all computations are done with floating point numbers.</title>
<updated>2016-01-22T23:15:44+00:00</updated>
<author>
<name>John Kirkham</name>
<email>kirkhamj@janelia.hhmi.org</email>
</author>
<published>2016-01-22T22:35:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=75d5b59bca181ee7e5ba872999014006c4b6c3f3'/>
<id>75d5b59bca181ee7e5ba872999014006c4b6c3f3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Make sure that the `ord=0` case returns a float.</title>
<updated>2016-01-22T23:15:44+00:00</updated>
<author>
<name>John Kirkham</name>
<email>kirkhamj@janelia.hhmi.org</email>
</author>
<published>2016-01-22T22:31:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=43c6a89128347928c5fe26f67ba2a0a022f00822'/>
<id>43c6a89128347928c5fe26f67ba2a0a022f00822</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Verify that `norm` is properly casting values to floats as needed.</title>
<updated>2016-01-22T23:15:40+00:00</updated>
<author>
<name>John Kirkham</name>
<email>kirkhamj@janelia.hhmi.org</email>
</author>
<published>2016-01-22T18:10:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=bc4a17ed89004ed63558a3e7f0bd035580777aa7'/>
<id>bc4a17ed89004ed63558a3e7f0bd035580777aa7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
