<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/doc, branch build_test</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>API: Do not import sliding_window_view to main namespace</title>
<updated>2020-11-05T23:41:49+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2020-11-05T23:41:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=7235d30f3da0a64bf9198db50b19669eb93e6ec6'/>
<id>7235d30f3da0a64bf9198db50b19669eb93e6ec6</id>
<content type='text'>
At least for now, lets not import it to the main namespace, since there is
no agreement that this is a good idea.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
At least for now, lets not import it to the main namespace, since there is
no agreement that this is a good idea.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Implement sliding window (gh-17394)</title>
<updated>2020-11-05T16:51:16+00:00</updated>
<author>
<name>Klaus Zimmermann</name>
<email>klaus.zimmermann@smhi.se</email>
</author>
<published>2020-11-05T16:51:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=43f80863ba2994a186293d86d516204ef38b0043'/>
<id>43f80863ba2994a186293d86d516204ef38b0043</id>
<content type='text'>
* implement sliding_window_view #7753
Test cases are shown in the issue page.

* Add Example Cases

* Add step_size and N-dim support

* Add shape and step_size check. Remove warning.

* Remove shape default
Add step_size default's description.

* Give proper parameter name 'step'

* fix a parameter description mistake

* implement test function for sliding_window_view()

* implement test function for sliding_window_view()

* Fix according to @eric-wieser comments

* Change arange to ogrid in Examples

* remove np.squeeze on return line

* Clarify document to avoid parameter confusion.

* add `writable` and more explanation in docs

* resolve a write conflit

* fixes according to @seberg review

* resolve write hazard

* remove outdated docs.

* change referring according to @mattip.
change 'writeable' to 'readonly' as @seberg suggest.
remove 'step' as @eric-wieser request

* fix test minor error

* DOC: Grammar fixes

* STY: Add missing line break required by PEP8

* + Change readonly parameter to writeable.
+ Update writeable description.
+ Fix a few parameter checks.
+ Other minor improvements.

* Move to new api as proposed by @eric-wieser

- Change api to follow suggestion by Eric Wieser in
  https://github.com/numpy/numpy/pull/10771#issuecomment-524715356
- Update docstring
- Add more tests

* Improve documentation

* Add sliding_window_view to documentation index

* Apply suggestions from code review

Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;

* Fix window shape check

* Add `sliding_window_view` to __all__

* Add tests for  error cases

* Add array_function dispatching

* Change dispatcher argument defaults to None

* Simplify array function dispatching

* Added "np." prefix to doctests

* Split tests

* Improved docstring

* Add release note

* Fix docstring formatting

* Fix doctest

* Remove namespacing in documentation indexing

* Improve docstring

* Improved docstring

* Simplified docstring

* Improve docstring to make pseudo code stand out

* Improve docstring

* Add simple application example

* Correct release note

* Improve link with as_strides

* Add note about performance

* Tidy up main doc string

* Make language on performance warning stronger

* Bugfix: pass subok and writeable to as_strided

* Add writeable test

* Add subok test

* Change subok test to use custom array subclass instead of unsupported MaskedArray

* Add version added information

Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;

Co-authored-by: Fanjin &lt;fjzeng@ucsd.edu&gt;
Co-authored-by: Fanjin Zeng &lt;Fnjn@users.noreply.github.com&gt;
Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;
Co-authored-by: fanjin &lt;fjzeng@outlook.com&gt;

Closes gh-7753</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* implement sliding_window_view #7753
Test cases are shown in the issue page.

* Add Example Cases

* Add step_size and N-dim support

* Add shape and step_size check. Remove warning.

* Remove shape default
Add step_size default's description.

* Give proper parameter name 'step'

* fix a parameter description mistake

* implement test function for sliding_window_view()

* implement test function for sliding_window_view()

* Fix according to @eric-wieser comments

* Change arange to ogrid in Examples

* remove np.squeeze on return line

* Clarify document to avoid parameter confusion.

* add `writable` and more explanation in docs

* resolve a write conflit

* fixes according to @seberg review

* resolve write hazard

* remove outdated docs.

* change referring according to @mattip.
change 'writeable' to 'readonly' as @seberg suggest.
remove 'step' as @eric-wieser request

* fix test minor error

* DOC: Grammar fixes

* STY: Add missing line break required by PEP8

* + Change readonly parameter to writeable.
+ Update writeable description.
+ Fix a few parameter checks.
+ Other minor improvements.

* Move to new api as proposed by @eric-wieser

- Change api to follow suggestion by Eric Wieser in
  https://github.com/numpy/numpy/pull/10771#issuecomment-524715356
- Update docstring
- Add more tests

* Improve documentation

* Add sliding_window_view to documentation index

* Apply suggestions from code review

Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;

* Fix window shape check

* Add `sliding_window_view` to __all__

* Add tests for  error cases

* Add array_function dispatching

* Change dispatcher argument defaults to None

* Simplify array function dispatching

* Added "np." prefix to doctests

* Split tests

* Improved docstring

* Add release note

* Fix docstring formatting

* Fix doctest

* Remove namespacing in documentation indexing

* Improve docstring

* Improved docstring

* Simplified docstring

* Improve docstring to make pseudo code stand out

* Improve docstring

* Add simple application example

* Correct release note

* Improve link with as_strides

* Add note about performance

* Tidy up main doc string

* Make language on performance warning stronger

* Bugfix: pass subok and writeable to as_strided

* Add writeable test

* Add subok test

* Change subok test to use custom array subclass instead of unsupported MaskedArray

* Add version added information

Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;

Co-authored-by: Fanjin &lt;fjzeng@ucsd.edu&gt;
Co-authored-by: Fanjin Zeng &lt;Fnjn@users.noreply.github.com&gt;
Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;
Co-authored-by: fanjin &lt;fjzeng@outlook.com&gt;

Closes gh-7753</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Add ``ma.isMaskedArray`` and aliases</title>
<updated>2020-11-05T05:49:59+00:00</updated>
<author>
<name>takanori-pskq</name>
<email>takanori17h@gmail.com</email>
</author>
<published>2020-11-05T05:49:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=e9611531225fce80912bcd6d22c52b7325a995ac'/>
<id>e9611531225fce80912bcd6d22c52b7325a995ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Modify Templates (#17691)</title>
<updated>2020-11-04T11:13:39+00:00</updated>
<author>
<name>Takanori H</name>
<email>takanori17h@gmail.com</email>
</author>
<published>2020-11-04T11:13:39+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=b219f69db011a89e6c514ee487dc437f607c4d94'/>
<id>b219f69db011a89e6c514ee487dc437f607c4d94</id>
<content type='text'>
* DOC: Modify Templates</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* DOC: Modify Templates</pre>
</div>
</content>
</entry>
<entry>
<title>Add info on transopose to absolute beginners tutorial (#17703)</title>
<updated>2020-11-03T20:07:33+00:00</updated>
<author>
<name>prateek arora</name>
<email>aprateek29@gmail.com</email>
</author>
<published>2020-11-03T20:07:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=f8c608cc7a8abcfaea1cd655ddaab47065c5b1e5'/>
<id>f8c608cc7a8abcfaea1cd655ddaab47065c5b1e5</id>
<content type='text'>
Adds a blurb about the transpose property of ndarray and updates formatting
of some rst inline literals.

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds a blurb about the transpose property of ndarray and updates formatting
of some rst inline literals.

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>REL: Update master after 1.19.4 release.</title>
<updated>2020-11-02T16:44:36+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2020-11-02T16:44:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=220f3fee717994c07275482e06f06259e055d033'/>
<id>220f3fee717994c07275482e06f06259e055d033</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>NEP36: include additional feedback (#17578)</title>
<updated>2020-11-01T12:51:13+00:00</updated>
<author>
<name>Stefan van der Walt</name>
<email>stefanv@berkeley.edu</email>
</author>
<published>2020-11-01T12:51:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=3052bbcf1ec4de331154f920dd9bba0bbc200b95'/>
<id>3052bbcf1ec4de331154f920dd9bba0bbc200b95</id>
<content type='text'>
Include some last feedback from Ralf and Ben


Co-authored-by: Ralf Gommers &lt;ralf.gommers@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Include some last feedback from Ralf and Ben


Co-authored-by: Ralf Gommers &lt;ralf.gommers@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Update RELEASE_WALKTHROUGH.rst.txt.</title>
<updated>2020-10-30T14:04:27+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2020-07-22T17:34:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=f7518be6309a661085ec1f87f0db7b3fe23ba240'/>
<id>f7518be6309a661085ec1f87f0db7b3fe23ba240</id>
<content type='text'>
Update the walkthrough to document changes in procedures and software.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update the walkthrough to document changes in procedures and software.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #17596 from seberg/subarray-dtype-futurewarning</title>
<updated>2020-10-29T09:38:50+00:00</updated>
<author>
<name>Matti Picus</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2020-10-29T09:38:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=08f9eeb4a39761131af059b944225874835e94b0'/>
<id>08f9eeb4a39761131af059b944225874835e94b0</id>
<content type='text'>
DEP,BUG: Coercion/cast of array to a subarray dtype will be fixed</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DEP,BUG: Coercion/cast of array to a subarray dtype will be fixed</pre>
</div>
</content>
</entry>
<entry>
<title>REL: Update master after 1.19.3 release.</title>
<updated>2020-10-29T02:26:22+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2020-10-29T02:23:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=0ae2811bde4daaa4bb68ed818871eb2011a75888'/>
<id>0ae2811bde4daaa4bb68ed818871eb2011a75888</id>
<content type='text'>
- Forward port 1.19.3-notes.rst
- Forward port 1.19.3-changelog.rst
- Update release.rst
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Forward port 1.19.3-notes.rst
- Forward port 1.19.3-changelog.rst
- Update release.rst
</pre>
</div>
</content>
</entry>
</feed>
