From noreply at github.com Tue Dec 1 09:34:39 2015 From: noreply at github.com (GitHub) Date: Tue, 01 Dec 2015 06:34:39 -0800 Subject: [Numpy-svn] [numpy/numpy] d07e20: BUG/TST: Fix for #6729 Message-ID: <565dafff22e6f_683d3f901e8452b81146c9@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: d07e20ea2718c2d460a203f6775aef6cea8ba520 https://github.com/numpy/numpy/commit/d07e20ea2718c2d460a203f6775aef6cea8ba520 Author: Gerrit Holl Date: 2015-12-01 (Tue, 01 Dec 2015) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- BUG/TST: Fix for #6729 Fix representation of a structured masked array with dimension zero. The effect of representing a masked array with dimension zero is now similar to respresenting an mvoid. This commit fixes #6729. Commit: 433e6691113c4656cd939f94da4a837ed08e59a4 https://github.com/numpy/numpy/commit/433e6691113c4656cd939f94da4a837ed08e59a4 Author: Charles Harris Date: 2015-12-01 (Tue, 01 Dec 2015) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6733 from gerritholl/structured_multidim_masked_array_strrep BUG/TST: Fix for #6729 Compare: https://github.com/numpy/numpy/compare/dac0e5d70e39...433e6691113c From noreply at github.com Tue Dec 1 18:18:32 2015 From: noreply at github.com (GitHub) Date: Tue, 01 Dec 2015 15:18:32 -0800 Subject: [Numpy-svn] [numpy/numpy] 593345: ENH: Avoid memory peak and useless computations wh... Message-ID: <565e2ac8ec1de_49893f9f422512c0792b1@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 593345a75fdd3de103e3e50969fbca2ed752f08d https://github.com/numpy/numpy/commit/593345a75fdd3de103e3e50969fbca2ed752f08d Author: Simon Conseil Date: 2015-11-28 (Sat, 28 Nov 2015) Changed paths: M numpy/ma/core.py Log Message: ----------- ENH: Avoid memory peak and useless computations when printing a MaskedArray. Ref #3544. When printing a `MaskedArray`, the whole array is converted to the object dtype, whereas only a few values are printed to screen. So the approach here is to cut the array and keep only a subset that it used for the string conversion. This way the output should not change. Commit: b5c456e84dc87521a476ff51e3a2ab55f8c5c29f https://github.com/numpy/numpy/commit/b5c456e84dc87521a476ff51e3a2ab55f8c5c29f Author: Simon Conseil Date: 2015-12-01 (Tue, 01 Dec 2015) Changed paths: M numpy/ma/core.py Log Message: ----------- Allow to change the maximum width with a class variable. Commit: d0e9d98b2aa126bb2654c4c5966a4034c4bb99fc https://github.com/numpy/numpy/commit/d0e9d98b2aa126bb2654c4c5966a4034c4bb99fc Author: Simon Conseil Date: 2015-12-02 (Wed, 02 Dec 2015) Changed paths: M numpy/ma/core.py Log Message: ----------- Use integer division to avoid casting to int. Commit: 11f809219458973d73018ad2438cb8514b61c7a6 https://github.com/numpy/numpy/commit/11f809219458973d73018ad2438cb8514b61c7a6 Author: Charles Harris Date: 2015-12-01 (Tue, 01 Dec 2015) Changed paths: M numpy/ma/core.py Log Message: ----------- Merge pull request #6748 from saimn/ma-repr-memory ENH: Avoid memory peak and useless computations when printing a MaskedArray. Compare: https://github.com/numpy/numpy/compare/433e6691113c...11f809219458 From noreply at github.com Tue Dec 1 18:22:32 2015 From: noreply at github.com (GitHub) Date: Tue, 01 Dec 2015 15:22:32 -0800 Subject: [Numpy-svn] [numpy/numpy] 531f2a: ENH: Avoid memory peak when creating a MaskedArray... Message-ID: <565e2bb8ade4a_f413fdb730e92bc15694c@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 531f2ad34d006585281b9416fa30992dd37cf2af https://github.com/numpy/numpy/commit/531f2ad34d006585281b9416fa30992dd37cf2af Author: Simon Conseil Date: 2015-11-26 (Thu, 26 Nov 2015) Changed paths: M numpy/ma/core.py Log Message: ----------- ENH: Avoid memory peak when creating a MaskedArray with mask=True/False (#6732). When the `mask` parameter is set to True or False, create directly a `ndarray` of boolean instead of going inside `np.resize` which was causing of memory peak of ~15 times the size of the mask. Commit: 70d8cf55339eca151ad0896526f2e0815dba1489 https://github.com/numpy/numpy/commit/70d8cf55339eca151ad0896526f2e0815dba1489 Author: Simon Conseil Date: 2015-12-01 (Tue, 01 Dec 2015) Changed paths: M numpy/ma/core.py Log Message: ----------- Test that the mask dtype if MaskType before using np.zeros/ones Commit: 511dab48438dcc9470b5632e206eeef74f5ad6bc https://github.com/numpy/numpy/commit/511dab48438dcc9470b5632e206eeef74f5ad6bc Author: Simon Conseil Date: 2015-12-01 (Tue, 01 Dec 2015) Changed paths: M numpy/ma/tests/test_core.py Log Message: ----------- Add some tests for mask creation with mask=True or False. Commit: b3a8994a2a3c89c00ac4a95e01cd0888b72fd9af https://github.com/numpy/numpy/commit/b3a8994a2a3c89c00ac4a95e01cd0888b72fd9af Author: Charles Harris Date: 2015-12-01 (Tue, 01 Dec 2015) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6734 from saimn/ma-mask-memory ENH: Avoid memory peak when creating a MaskedArray with mask=True/False. Compare: https://github.com/numpy/numpy/compare/11f809219458...b3a8994a2a3c From noreply at github.com Wed Dec 2 09:42:48 2015 From: noreply at github.com (GitHub) Date: Wed, 02 Dec 2015 06:42:48 -0800 Subject: [Numpy-svn] [numpy/numpy] f752d8: DOC: Add changelog for #6734 and #6748. Message-ID: <565f03687c376_230f3fe36ddf12a0613a4@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: f752d84206bece604bbb8cb1c78b1f3a6af468f8 https://github.com/numpy/numpy/commit/f752d84206bece604bbb8cb1c78b1f3a6af468f8 Author: Simon Conseil Date: 2015-12-02 (Wed, 02 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst Log Message: ----------- DOC: Add changelog for #6734 and #6748. Commit: 45ff55634c0ddd44bd07141b3ffb6c4c5f08118c https://github.com/numpy/numpy/commit/45ff55634c0ddd44bd07141b3ffb6c4c5f08118c Author: Charles Harris Date: 2015-12-02 (Wed, 02 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst Log Message: ----------- Merge pull request #6754 from saimn/ma-changelog DOC: Add changelog for #6734 and #6748. Compare: https://github.com/numpy/numpy/compare/b3a8994a2a3c...45ff55634c0d From noreply at github.com Wed Dec 2 15:58:54 2015 From: noreply at github.com (GitHub) Date: Wed, 02 Dec 2015 12:58:54 -0800 Subject: [Numpy-svn] [numpy/numpy] 927e88: BUG: resizing empty array with complex dtype faile... Message-ID: <565f5b8e6247d_1be93fa1cfabf29c319d5@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 927e8809cb566722b1bd0b15dca9f030f3cd29b9 https://github.com/numpy/numpy/commit/927e8809cb566722b1bd0b15dca9f030f3cd29b9 Author: Sebastian Berg Date: 2015-12-02 (Wed, 02 Dec 2015) Changed paths: M numpy/core/fromnumeric.py M numpy/core/tests/test_numeric.py Log Message: ----------- BUG: resizing empty array with complex dtype failed This is because the dtype was passed into the new array as a char, and many dtypes do not have a valid char representation. Closes gh-6740 Commit: 1a097894a6da019a1bc728f96eb40b33a584d05d https://github.com/numpy/numpy/commit/1a097894a6da019a1bc728f96eb40b33a584d05d Author: Charles Harris Date: 2015-12-02 (Wed, 02 Dec 2015) Changed paths: M numpy/core/fromnumeric.py M numpy/core/tests/test_numeric.py Log Message: ----------- Merge pull request #6758 from seberg/resize-empty BUG: resizing empty array with complex dtype failed Compare: https://github.com/numpy/numpy/compare/45ff55634c0d...1a097894a6da From noreply at github.com Thu Dec 3 12:42:32 2015 From: noreply at github.com (GitHub) Date: Thu, 03 Dec 2015 09:42:32 -0800 Subject: [Numpy-svn] [numpy/numpy] c8a098: BUG/TST: Fix #6760 by correctly describing mask on... Message-ID: <56607f08a9d8_54553faabec1f2c08565b@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: c8a09822c707f320d8c8ac242a8628de690a5899 https://github.com/numpy/numpy/commit/c8a09822c707f320d8c8ac242a8628de690a5899 Author: Gerrit Holl Date: 2015-12-03 (Thu, 03 Dec 2015) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- BUG/TST: Fix #6760 by correctly describing mask on nested subdtypes Fix #6760. In ma.core._recursive_make_descr, consider the case where a subdtype does itself have named fields. This ensures the correct mask for an array like `ma.zeros(2, dtype([("A", "(2,2)i1,(2,2)i1", (2,2))]))`. Commit: d69d51c0d26fef3f8914aaa3d9af21348fe7a043 https://github.com/numpy/numpy/commit/d69d51c0d26fef3f8914aaa3d9af21348fe7a043 Author: Charles Harris Date: 2015-12-03 (Thu, 03 Dec 2015) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6761 from gerritholl/structured_nested_masked_array_maskfill BUG/TST: Fix #6760 by correctly describing mask on nested subdtypes Compare: https://github.com/numpy/numpy/compare/1a097894a6da...d69d51c0d26f From noreply at github.com Thu Dec 3 16:07:15 2015 From: noreply at github.com (GitHub) Date: Thu, 03 Dec 2015 13:07:15 -0800 Subject: [Numpy-svn] [numpy/numpy] 07b11e: BUG: Include relevant files from numpy/linalg/lapa... Message-ID: <5660af0319dcd_49d03fd2a73f32c01201f1@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 07b11e8676f43e9fe2f1dc1cb5c777728ada0f04 https://github.com/numpy/numpy/commit/07b11e8676f43e9fe2f1dc1cb5c777728ada0f04 Author: Charles Harris Date: 2015-11-24 (Tue, 24 Nov 2015) Changed paths: M MANIFEST.in Log Message: ----------- BUG: Include relevant files from numpy/linalg/lapack_lite in sdist. After 1e436a5 *.h and *.c files from numpy/linalg/lapack_lite were no longer included in source distributions. Fix this by adding them to MANIFEST.in. Closes #6694. Commit: 93977b66044a9b07556573fc01a8f15c3bb0407e https://github.com/numpy/numpy/commit/93977b66044a9b07556573fc01a8f15c3bb0407e Author: Charles Harris Date: 2015-12-03 (Thu, 03 Dec 2015) Changed paths: M MANIFEST.in Log Message: ----------- Merge pull request #6715 from charris/fix-gh-6694 BUG: Include relevant files from numpy/linalg/lapack_lite in sdist. Compare: https://github.com/numpy/numpy/compare/d69d51c0d26f...93977b66044a From noreply at github.com Fri Dec 4 13:04:40 2015 From: noreply at github.com (GitHub) Date: Fri, 04 Dec 2015 10:04:40 -0800 Subject: [Numpy-svn] [numpy/numpy] 2fb84b: BUG: link cblas library if cblas is detected Message-ID: <5661d5b8acfcd_2fe43fd4f254129c3084d@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 2fb84baca65c23006612be4bb2b92b1738a3aba2 https://github.com/numpy/numpy/commit/2fb84baca65c23006612be4bb2b92b1738a3aba2 Author: Allan Haldane Date: 2015-12-04 (Fri, 04 Dec 2015) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- BUG: link cblas library if cblas is detected Commit: c890b10a8ade5df19f97b02a2b10a75f9f6075e9 https://github.com/numpy/numpy/commit/c890b10a8ade5df19f97b02a2b10a75f9f6075e9 Author: Charles Harris Date: 2015-12-04 (Fri, 04 Dec 2015) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- Merge pull request #6757 from ahaldane/link_cblas BUG: link cblas library if cblas is detected Compare: https://github.com/numpy/numpy/compare/93977b66044a...c890b10a8ade From noreply at github.com Fri Dec 4 14:21:09 2015 From: noreply at github.com (GitHub) Date: Fri, 04 Dec 2015 11:21:09 -0800 Subject: [Numpy-svn] [numpy/numpy] dcb491: BUG: link cblas library if cblas is detected Message-ID: <5661e7a5e0465_3a9b3f97e60192b81382a@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: dcb491eed7ee26d5107bc5a18508934520f59ad6 https://github.com/numpy/numpy/commit/dcb491eed7ee26d5107bc5a18508934520f59ad6 Author: Allan Haldane Date: 2015-12-04 (Fri, 04 Dec 2015) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- BUG: link cblas library if cblas is detected Commit: 5734bbaa69791e43c747e04497b653cd7d8b206a https://github.com/numpy/numpy/commit/5734bbaa69791e43c747e04497b653cd7d8b206a Author: Charles Harris Date: 2015-12-04 (Fri, 04 Dec 2015) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- Merge pull request #6770 from charris/backport-6757 Backport 6757 Compare: https://github.com/numpy/numpy/compare/1f40bb0e5251...5734bbaa6979 From noreply at github.com Fri Dec 4 14:49:38 2015 From: noreply at github.com (GitHub) Date: Fri, 04 Dec 2015 11:49:38 -0800 Subject: [Numpy-svn] [numpy/numpy] 53facf: BUG/TST: Fix for #6724, make numpy.ma.mvoid consis... Message-ID: <5661ee52ab248_a713fccd75612b81672d9@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 53facf327c7b2949a5f31c308fd66b0b1f24b615 https://github.com/numpy/numpy/commit/53facf327c7b2949a5f31c308fd66b0b1f24b615 Author: Gerrit Holl Date: 2015-12-03 (Thu, 03 Dec 2015) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- BUG/TST: Fix for #6724, make numpy.ma.mvoid consistent with numpy.void Make indexing on numpy.ma.mvoid consistent with indexing on numpy.void. Changes behaviour in rare cases (see below). Fixes #6724. Sometimes, indexing ma.mvoid results in a non-scalar mask. For example, dimension increases if indexing with a multi-dimensional field. Previously, this led to a ValueError (truth value ambiguous). With this commit, indexing now returns an ma.masked_array so that there is no loss of information. Note that there is a precedence for returning from void to array. Z = zeros((2,), dtype="(2,)i2,(2,)i2"), then Z[0] is a void, but Z[0][0] and Z[0]["f1"] are array. This commit therefore implements behaviouk such that numpy.ma.mvoid is consistent with numpy.void. Also adds a related test. The behaviour changes in cases where for a masked array `X`, X.dtype["A"] is multidimensional but size 1, such as in the example below. Any case where X.dtype["A"] is multidimensional but with size>1 would previously fail. Old behaviour: In [15]: X = ma.masked_array(data=[([0],)], mask=[([False],)], dtype=[("A", "(1,1)i2", (1,1))]) In [16]: X[0]["A"] Out[16]: array([[[[0]]]], dtype=int16) In [17]: X = ma.masked_array(data=[([0],)], mask=[([True],)], dtype=[("A", "(1,1)i2", (1,1))]) In [18]: X[0]["A"] Out[18]: masked New behaviour: In [1]: X = ma.masked_array(data=[([0],)], mask=[([False],)], dtype=[("A", "(1,1)i2", (1,1))]) In [2]: X[0]["A"] Out[2]: masked_array(data = [[[[0]]]], mask = [[[[False]]]], fill_value = [[[[16959]]]]) In [3]: X = ma.masked_array(data=[([0],)], mask=[([True],)], dtype=[("A", "(1,1)i2", (1,1))]) In [4]: X[0]["A"] Out[4]: masked_array(data = [[[[--]]]], mask = [[[[ True]]]], fill_value = [[[[16959]]]]) The new behaviour is more consistent with indexing the data themselves: In [7]: X.data[0]["A"] Out[7]: array([[[[0]]]], dtype=int16) In theory, this change in behaviour can break code, but I would consider it very unlikely. Commit: 3cc797e5107d5f3fe812b0ccdc9bc96f107f0b20 https://github.com/numpy/numpy/commit/3cc797e5107d5f3fe812b0ccdc9bc96f107f0b20 Author: Charles Harris Date: 2015-12-04 (Fri, 04 Dec 2015) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6763 from gerritholl/structured_multidim_masked_array_mvoid_alt BUG/TST: Fix for #6724, make numpy.ma.mvoid consistent with numpy.void Compare: https://github.com/numpy/numpy/compare/c890b10a8ade...3cc797e5107d From noreply at github.com Sat Dec 5 14:56:21 2015 From: noreply at github.com (GitHub) Date: Sat, 05 Dec 2015 11:56:21 -0800 Subject: [Numpy-svn] [numpy/numpy] e3243e: TST: test f2py, fallback on f2py2.7 etc., fixes #6... Message-ID: <5663416599959_3e543f8d1fff32a014195b@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: e3243e2110842132ec3ebfe1d9f7857ec58ffd34 https://github.com/numpy/numpy/commit/e3243e2110842132ec3ebfe1d9f7857ec58ffd34 Author: J?rn Hees Date: 2015-12-05 (Sat, 05 Dec 2015) Changed paths: M numpy/tests/test_scripts.py Log Message: ----------- TST: test f2py, fallback on f2py2.7 etc., fixes #6718 Commit: a42cb551c5da01072a9dd4b980d6a68620672a4e https://github.com/numpy/numpy/commit/a42cb551c5da01072a9dd4b980d6a68620672a4e Author: Charles Harris Date: 2015-12-05 (Sat, 05 Dec 2015) Changed paths: M numpy/tests/test_scripts.py Log Message: ----------- Merge pull request #6756 from joernhees/patch-1 TST: only test f2py, not f2py2.7 etc, fixes #6718 Compare: https://github.com/numpy/numpy/compare/3cc797e5107d...a42cb551c5da From noreply at github.com Sat Dec 5 16:31:19 2015 From: noreply at github.com (GitHub) Date: Sat, 05 Dec 2015 13:31:19 -0800 Subject: [Numpy-svn] [numpy/numpy] 6f7b32: TST: test f2py, fallback on f2py2.7 etc., fixes #6... Message-ID: <566357a712b57_26883fc257f332bc55949@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 6f7b32f8f8a768e0dbe3e2fca0dda4a139c5c29f https://github.com/numpy/numpy/commit/6f7b32f8f8a768e0dbe3e2fca0dda4a139c5c29f Author: J?rn Hees Date: 2015-12-05 (Sat, 05 Dec 2015) Changed paths: M numpy/tests/test_scripts.py Log Message: ----------- TST: test f2py, fallback on f2py2.7 etc., fixes #6718 Commit: aabfd815665bc078e8630ef63df4f03f847d9dcd https://github.com/numpy/numpy/commit/aabfd815665bc078e8630ef63df4f03f847d9dcd Author: Charles Harris Date: 2015-12-05 (Sat, 05 Dec 2015) Changed paths: M numpy/tests/test_scripts.py Log Message: ----------- Merge pull request #6772 from charris/backport-6756 Backport 6756 Compare: https://github.com/numpy/numpy/compare/5734bbaa6979...aabfd815665b From noreply at github.com Sat Dec 5 19:53:35 2015 From: noreply at github.com (GitHub) Date: Sat, 05 Dec 2015 16:53:35 -0800 Subject: [Numpy-svn] [numpy/numpy] 8e9c91: BENCH: allow benchmark suite to run on Python 3 Message-ID: <5663870faed0b_71c3fea928c32c0185989@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 8e9c91ca962b1cb76c392983740300691a37c3cd https://github.com/numpy/numpy/commit/8e9c91ca962b1cb76c392983740300691a37c3cd Author: Pauli Virtanen Date: 2015-12-06 (Sun, 06 Dec 2015) Changed paths: M benchmarks/benchmarks/bench_app.py M benchmarks/benchmarks/common.py Log Message: ----------- BENCH: allow benchmark suite to run on Python 3 Commit: 0ba39a97ce6f38b714b8109bd32573a9eacd4c17 https://github.com/numpy/numpy/commit/0ba39a97ce6f38b714b8109bd32573a9eacd4c17 Author: Charles Harris Date: 2015-12-05 (Sat, 05 Dec 2015) Changed paths: M benchmarks/benchmarks/bench_app.py M benchmarks/benchmarks/common.py Log Message: ----------- Merge pull request #6774 from pv/bench-py3 BENCH: allow benchmark suite to run on Python 3 Compare: https://github.com/numpy/numpy/compare/a42cb551c5da...0ba39a97ce6f From noreply at github.com Sun Dec 6 13:44:37 2015 From: noreply at github.com (GitHub) Date: Sun, 06 Dec 2015 10:44:37 -0800 Subject: [Numpy-svn] [numpy/numpy] e9ef83: DEP: Deprecate changing shape of non-C-contiguous ... Message-ID: <56648215bb420_58b83fa0da98b2b898875@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: e9ef83d72b8d5ca6828b16fc8cdf435905fe9bb0 https://github.com/numpy/numpy/commit/e9ef83d72b8d5ca6828b16fc8cdf435905fe9bb0 Author: Charles Harris Date: 2015-11-29 (Sun, 29 Nov 2015) Changed paths: M numpy/core/src/multiarray/getset.c M numpy/core/tests/test_deprecations.py Log Message: ----------- DEP: Deprecate changing shape of non-C-contiguous array via descr. This deprecates assignment of a new descriptor to the dtype attribute of a non-C-contiguous array if it result in changing the shape. This effectively bars viewing a multidimensional Fortran array using a dtype that changes the element size along the first axis. The reason for the deprecation is that, when relaxed strides checking is enabled, arrays that are both C and Fortran contiguous are always treated as C contiguous which breaks some code that depended the two being mutually exclusive for arrays of dimension > 1. The intent of this deprecation is to prepare the way to always enable relaxed stride checking. Example ------- ``` In [1]: import warnings In [2]: warnings.simplefilter('always') In [3]: a = ones((2, 1), order='F').view(complex) /home/charris/.local/bin/ipython:1: DeprecationWarning: Changing the shape of non-C contiguous array by descriptor assignment is deprecated. To maintain the Fortran contiguity of a multidimensional Fortran array, use 'a.T.view(...).T' instead ``` Commit: 16c6a361e741685feb67c29c36631829ce3b9559 https://github.com/numpy/numpy/commit/16c6a361e741685feb67c29c36631829ce3b9559 Author: Charles Harris Date: 2015-12-03 (Thu, 03 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst Log Message: ----------- DOC: Document fortran order view deprecation in 1.11 release notes. Commit: 328f89e48558b8c9523a6c41696fd2b677930fa1 https://github.com/numpy/numpy/commit/328f89e48558b8c9523a6c41696fd2b677930fa1 Author: Charles Harris Date: 2015-12-06 (Sun, 06 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst M numpy/core/src/multiarray/getset.c M numpy/core/tests/test_deprecations.py Log Message: ----------- Merge pull request #6747 from charris/deprecate-fortran-view DEP: Deprecate changing shape of non-C-contiguous array via descr. Compare: https://github.com/numpy/numpy/compare/0ba39a97ce6f...328f89e48558 From noreply at github.com Sun Dec 6 14:56:55 2015 From: noreply at github.com (GitHub) Date: Sun, 06 Dec 2015 11:56:55 -0800 Subject: [Numpy-svn] [numpy/numpy] 7ffa81: BUG: metadata is not copied to base_dtype Message-ID: <566493071d366_2c013fe6967a729c1867dd@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7ffa81f04ba046d5413ab7c3f22c44fd545fcd5a https://github.com/numpy/numpy/commit/7ffa81f04ba046d5413ab7c3f22c44fd545fcd5a Author: Allan Haldane Date: 2015-12-06 (Sun, 06 Dec 2015) Changed paths: M numpy/core/src/multiarray/descriptor.c M numpy/core/tests/test_dtype.py Log Message: ----------- BUG: metadata is not copied to base_dtype The (somewhat obsolete) metadata attribute of the data_dtype should be carried over in dtype specifications of the form (base_dtype, data_dtype). Fixes #6771 Incidentally fixes a reference leak in `dtype(('i4,i4', 'i4,i4'))` Commit: db6300726ac9f73282ce8fda5588d958c0f327b4 https://github.com/numpy/numpy/commit/db6300726ac9f73282ce8fda5588d958c0f327b4 Author: Charles Harris Date: 2015-12-06 (Sun, 06 Dec 2015) Changed paths: M numpy/core/src/multiarray/descriptor.c M numpy/core/tests/test_dtype.py Log Message: ----------- Merge pull request #6780 from ahaldane/preserve_metadata BUG: metadata is not copied to base_dtype Compare: https://github.com/numpy/numpy/compare/328f89e48558...db6300726ac9 From noreply at github.com Sun Dec 6 16:17:52 2015 From: noreply at github.com (GitHub) Date: Sun, 06 Dec 2015 13:17:52 -0800 Subject: [Numpy-svn] [numpy/numpy] f5cdf4: BUG: Fix travis ci testing for new google infrastr... Message-ID: <5664a6007ba93_1c983fd2a8b812c0127971@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: f5cdf4a77edace4ca11c9e67368906a983a11ac8 https://github.com/numpy/numpy/commit/f5cdf4a77edace4ca11c9e67368906a983a11ac8 Author: Charles Harris Date: 2015-12-06 (Sun, 06 Dec 2015) Changed paths: M .travis.yml M tools/travis-test.sh Log Message: ----------- BUG: Fix travis ci testing for new google infrastructure. Travis ci has updated their default infrastructure and this breaks the heritage infrastructure that 1.10 testing relied on. The fix here is to copy the testing from the master branch and modify it to run for 1.10. In particular, bento and single file compilation testing needed to be added back in and the relaxed stride default disabled. Closes #6781. Commit: 08885f99ceda148e2cc4702a3da49db858bbd681 https://github.com/numpy/numpy/commit/08885f99ceda148e2cc4702a3da49db858bbd681 Author: Charles Harris Date: 2015-12-06 (Sun, 06 Dec 2015) Changed paths: M .travis.yml M tools/travis-test.sh Log Message: ----------- Merge pull request #6783 from charris/fix-travis-for-1.10.x BUG: Fix travis ci testing for new google infrastructure. Compare: https://github.com/numpy/numpy/compare/aabfd815665b...08885f99ceda From noreply at github.com Sun Dec 6 16:45:38 2015 From: noreply at github.com (GitHub) Date: Sun, 06 Dec 2015 13:45:38 -0800 Subject: [Numpy-svn] [numpy/numpy] bbb67c: DEP: Deprecate changing shape of non-C-contiguous ... Message-ID: <5664ac826daea_57183fb91f1db2b8121595@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: bbb67c22628b4d0576ebaa765ee23313333c5823 https://github.com/numpy/numpy/commit/bbb67c22628b4d0576ebaa765ee23313333c5823 Author: Charles Harris Date: 2015-12-06 (Sun, 06 Dec 2015) Changed paths: M numpy/core/src/multiarray/getset.c M numpy/core/tests/test_deprecations.py Log Message: ----------- DEP: Deprecate changing shape of non-C-contiguous array via descr. This deprecates assignment of a new descriptor to the dtype attribute of a non-C-contiguous array if it result in changing the shape. This effectively bars viewing a multidimensional Fortran array using a dtype that changes the element size along the first axis. The reason for the deprecation is that, when relaxed strides checking is enabled, arrays that are both C and Fortran contiguous are always treated as C contiguous which breaks some code that depended the two being mutually exclusive for arrays of dimension > 1. The intent of this deprecation is to prepare the way to always enable relaxed stride checking. Example ------- ``` In [1]: import warnings In [2]: warnings.simplefilter('always') In [3]: a = ones((2, 1), order='F').view(complex) /home/charris/.local/bin/ipython:1: DeprecationWarning: Changing the shape of non-C contiguous array by descriptor assignment is deprecated. To maintain the Fortran contiguity of a multidimensional Fortran array, use 'a.T.view(...).T' instead ``` Commit: 760281aa36cf52168e9cdafacd6f827f82d2d75a https://github.com/numpy/numpy/commit/760281aa36cf52168e9cdafacd6f827f82d2d75a Author: Charles Harris Date: 2015-12-06 (Sun, 06 Dec 2015) Changed paths: M numpy/core/src/multiarray/getset.c M numpy/core/tests/test_deprecations.py Log Message: ----------- Merge pull request #6779 from charris/backport-6747 Backport 6747 Compare: https://github.com/numpy/numpy/compare/08885f99ceda...760281aa36cf From noreply at github.com Sun Dec 6 17:05:09 2015 From: noreply at github.com (GitHub) Date: Sun, 06 Dec 2015 14:05:09 -0800 Subject: [Numpy-svn] [numpy/numpy] 460327: BUG: metadata is not copied to base_dtype Message-ID: <5664b11527731_4fd93fb9ff1292bc2224ed@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 460327d410b79184d3f7a0ebdb1609af14bb9b71 https://github.com/numpy/numpy/commit/460327d410b79184d3f7a0ebdb1609af14bb9b71 Author: Allan Haldane Date: 2015-12-06 (Sun, 06 Dec 2015) Changed paths: M numpy/core/src/multiarray/descriptor.c M numpy/core/tests/test_dtype.py Log Message: ----------- BUG: metadata is not copied to base_dtype The (somewhat obsolete) metadata attribute of the data_dtype should be carried over in dtype specifications of the form (base_dtype, data_dtype). Fixes #6771 Incidentally fixes a reference leak in `dtype(('i4,i4', 'i4,i4'))` Commit: db1c7c41f0f5b4aa3e0fd38796a9649ae9260196 https://github.com/numpy/numpy/commit/db1c7c41f0f5b4aa3e0fd38796a9649ae9260196 Author: Charles Harris Date: 2015-12-06 (Sun, 06 Dec 2015) Changed paths: M numpy/core/src/multiarray/descriptor.c M numpy/core/tests/test_dtype.py Log Message: ----------- Merge pull request #6782 from charris/backport-6780 Backport 6780 Compare: https://github.com/numpy/numpy/compare/760281aa36cf...db1c7c41f0f5 From noreply at github.com Mon Dec 7 16:14:15 2015 From: noreply at github.com (GitHub) Date: Mon, 07 Dec 2015 13:14:15 -0800 Subject: [Numpy-svn] [numpy/numpy] 7b137a: BUG: Quick and dirty fix for interp. Message-ID: <5665f6a7c8ade_525a3fe8bda892c08472@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7b137ab0d52d95d5846f903a64207f5d6c0df17e https://github.com/numpy/numpy/commit/7b137ab0d52d95d5846f903a64207f5d6c0df17e Author: Charles Harris Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M numpy/core/src/multiarray/compiled_base.c M numpy/lib/tests/test_function_base.py Log Message: ----------- BUG: Quick and dirty fix for interp. The original had incorrect comparisons involving <=, <, and also failed when the number of data points was 2. This fixes the use of the comparisons and uses linear search for fewer than 5 data points. The whole routine needs a simplified rewrite, but this takes care of the bug. Closes #6468. Commit: 9ce9b9a7244f4d583e9bc6bc798f642226e6c4b6 https://github.com/numpy/numpy/commit/9ce9b9a7244f4d583e9bc6bc798f642226e6c4b6 Author: Nathaniel J. Smith Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M numpy/core/src/multiarray/compiled_base.c M numpy/lib/tests/test_function_base.py Log Message: ----------- Merge pull request #6785 from charris/fix-interp BUG: Quick and dirty fix for interp. Compare: https://github.com/numpy/numpy/compare/db6300726ac9...9ce9b9a7244f From noreply at github.com Mon Dec 7 16:58:37 2015 From: noreply at github.com (GitHub) Date: Mon, 07 Dec 2015 13:58:37 -0800 Subject: [Numpy-svn] [numpy/numpy] 99ddcf: BUG: Quick and dirty fix for interp. Message-ID: <5666010d92b68_5e943fef3f3b329c90540@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 99ddcfdb56e0b498f88304f2b43708959f3327fb https://github.com/numpy/numpy/commit/99ddcfdb56e0b498f88304f2b43708959f3327fb Author: Charles Harris Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M numpy/core/src/multiarray/compiled_base.c M numpy/lib/tests/test_function_base.py Log Message: ----------- BUG: Quick and dirty fix for interp. The original had incorrect comparisons involving <=, <, and also failed when the number of data points was 2. This fixes the use of the comparisons and uses linear search for fewer than 5 data points. The whole routine needs a simplified rewrite, but this takes care of the bug. Closes #6468. Commit: 3b9b28c6108f6c1b51a05e0267b58871ddb87730 https://github.com/numpy/numpy/commit/3b9b28c6108f6c1b51a05e0267b58871ddb87730 Author: Charles Harris Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M numpy/core/src/multiarray/compiled_base.c M numpy/lib/tests/test_function_base.py Log Message: ----------- Merge pull request #6786 from charris/backport-6785 Backport 6785 Compare: https://github.com/numpy/numpy/compare/db1c7c41f0f5...3b9b28c6108f From noreply at github.com Mon Dec 7 16:59:34 2015 From: noreply at github.com (GitHub) Date: Mon, 07 Dec 2015 13:59:34 -0800 Subject: [Numpy-svn] [numpy/numpy] 4743f3: MAINT: Include from __future__ boilerplate in some... Message-ID: <56660146158e3_74213feba1d392b8954a7@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 4743f3b4454a736e2bbd8b6f116f7efaef13c406 https://github.com/numpy/numpy/commit/4743f3b4454a736e2bbd8b6f116f7efaef13c406 Author: Charles Harris Date: 2015-12-05 (Sat, 05 Dec 2015) Changed paths: M numpy/_build_utils/apple_accelerate.py M numpy/compat/tests/test_compat.py M numpy/core/tests/test_scalarinherit.py M numpy/distutils/msvc9compiler.py M numpy/distutils/msvccompiler.py M numpy/f2py/__main__.py M numpy/lib/tests/test_packbits.py M numpy/linalg/tests/test_deprecations.py M pavement.py M runtests.py M tools/win32build/build-cpucaps.py Log Message: ----------- MAINT: Include from __future__ boilerplate in some files missing it. Some newer *.py files are missing the `from __future__` boilerplate that helps assure Python2 and Python3 compatibility. Commit: f1c5451e0521cf86e9485e16a2ea46864abc7b6a https://github.com/numpy/numpy/commit/f1c5451e0521cf86e9485e16a2ea46864abc7b6a Author: Charles Harris Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M numpy/_build_utils/apple_accelerate.py M numpy/compat/tests/test_compat.py M numpy/core/tests/test_scalarinherit.py M numpy/distutils/msvc9compiler.py M numpy/distutils/msvccompiler.py M numpy/f2py/__main__.py M numpy/lib/tests/test_packbits.py M numpy/linalg/tests/test_deprecations.py M pavement.py M runtests.py M tools/win32build/build-cpucaps.py Log Message: ----------- Merge pull request #6775 from charris/add-future-imports MAINT: Include from __future__ boilerplate in some files missing it. Compare: https://github.com/numpy/numpy/compare/9ce9b9a7244f...f1c5451e0521 From noreply at github.com Mon Dec 7 18:08:44 2015 From: noreply at github.com (GitHub) Date: Mon, 07 Dec 2015 15:08:44 -0800 Subject: [Numpy-svn] [numpy/numpy] 5aa1b9: MAINT: Include from __future__ boilerplate in some... Message-ID: <5666117c46083_44ac3ff15010f2bc1744f0@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 5aa1b9ac7ed00ec1aa957106a557adbffeca632a https://github.com/numpy/numpy/commit/5aa1b9ac7ed00ec1aa957106a557adbffeca632a Author: Charles Harris Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M numpy/_build_utils/apple_accelerate.py M numpy/compat/tests/test_compat.py M numpy/core/tests/test_scalarinherit.py M numpy/distutils/msvc9compiler.py M numpy/distutils/msvccompiler.py M numpy/f2py/__main__.py M numpy/lib/tests/test_packbits.py M numpy/linalg/tests/test_deprecations.py M pavement.py M runtests.py M tools/win32build/build-cpucaps.py Log Message: ----------- MAINT: Include from __future__ boilerplate in some files missing it. Some newer *.py files are missing the `from __future__` boilerplate that helps assure Python2 and Python3 compatibility. Commit: e0d7934db6ddc9893b2b9cc04b74349956330b59 https://github.com/numpy/numpy/commit/e0d7934db6ddc9893b2b9cc04b74349956330b59 Author: Charles Harris Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M numpy/_build_utils/apple_accelerate.py M numpy/compat/tests/test_compat.py M numpy/core/tests/test_scalarinherit.py M numpy/distutils/msvc9compiler.py M numpy/distutils/msvccompiler.py M numpy/f2py/__main__.py M numpy/lib/tests/test_packbits.py M numpy/linalg/tests/test_deprecations.py M pavement.py M runtests.py M tools/win32build/build-cpucaps.py Log Message: ----------- Merge pull request #6787 from charris/backport-6775 Backport 6775 Compare: https://github.com/numpy/numpy/compare/3b9b28c6108f...e0d7934db6dd From noreply at github.com Mon Dec 7 18:16:55 2015 From: noreply at github.com (GitHub) Date: Mon, 07 Dec 2015 15:16:55 -0800 Subject: [Numpy-svn] [numpy/numpy] 8a2808: DOC: update the 1.10.2 release notes. Message-ID: <56661367af0a8_24dc3ff9bed2d2bc7956f@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 8a2808ad368b66feacd8f3e1259e57e3a9fd1587 https://github.com/numpy/numpy/commit/8a2808ad368b66feacd8f3e1259e57e3a9fd1587 Author: Charles Harris Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: update the 1.10.2 release notes. Hopefully the final update before 1.10.2 is released. [ci skip] Commit: 6ddc496dfafa717ccb88941c111cd6a6e6d64d98 https://github.com/numpy/numpy/commit/6ddc496dfafa717ccb88941c111cd6a6e6d64d98 Author: Charles Harris Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M doc/release/1.10.0-notes.rst M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update the 1.10.0 release notes. Document that relaxed stride checking is no longer the default in 1.10.2. The 1.10.0 release notes may be read more often than the following notes, so this will help folks to notice the change. [ci skip] Commit: 1579ba490d5bc67f16d5311a0789cdf69d81ea11 https://github.com/numpy/numpy/commit/1579ba490d5bc67f16d5311a0789cdf69d81ea11 Author: Charles Harris Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M doc/release/1.10.0-notes.rst M doc/release/1.10.2-notes.rst Log Message: ----------- Merge pull request #6778 from charris/update-1.10.2-notes WIP: Update 1.10.2 notes Compare: https://github.com/numpy/numpy/compare/f1c5451e0521...1579ba490d5b From noreply at github.com Mon Dec 7 18:25:40 2015 From: noreply at github.com (GitHub) Date: Mon, 07 Dec 2015 15:25:40 -0800 Subject: [Numpy-svn] [numpy/numpy] 2f2132: DOC: update the 1.10.2 release notes. Message-ID: <56661574872d8_45583fd0f4e9b2b826170@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 2f2132752fd2d5fd44b31fc927bdd7a68bcf8147 https://github.com/numpy/numpy/commit/2f2132752fd2d5fd44b31fc927bdd7a68bcf8147 Author: Charles Harris Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: update the 1.10.2 release notes. Hopefully the final update before 1.10.2 is released. [ci skip] Commit: 6ac59be75830f0033eef4ece0052309165b4edac https://github.com/numpy/numpy/commit/6ac59be75830f0033eef4ece0052309165b4edac Author: Charles Harris Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M doc/release/1.10.0-notes.rst M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update the 1.10.0 release notes. Document that relaxed stride checking is no longer the default in 1.10.2. The 1.10.0 release notes may be read more often than the following notes, so this will help folks to notice the change. [ci skip] Commit: ca42ee3dc1aa00d1a3f16591c53c06281ec9f5d6 https://github.com/numpy/numpy/commit/ca42ee3dc1aa00d1a3f16591c53c06281ec9f5d6 Author: Charles Harris Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M doc/release/1.10.0-notes.rst M doc/release/1.10.2-notes.rst Log Message: ----------- Merge pull request #6788 from charris/backport-6778 Backport 6778 Compare: https://github.com/numpy/numpy/compare/e0d7934db6dd...ca42ee3dc1aa From noreply at github.com Mon Dec 7 20:41:35 2015 From: noreply at github.com (GitHub) Date: Mon, 07 Dec 2015 17:41:35 -0800 Subject: [Numpy-svn] [numpy/numpy] c16af0: REL: Release 1.10.2rc2 Message-ID: <5666354fbf433_727a3fee2b5eb2b8145847@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/tags/v1.10.2rc2 Home: https://github.com/numpy/numpy Commit: c16af049301ed0a88c57e403854f90725a4a8a7d https://github.com/numpy/numpy/commit/c16af049301ed0a88c57e403854f90725a4a8a7d Author: Charles R Harris Date: 2015-12-08 (Tue, 08 Dec 2015) Changed paths: M pavement.py M setup.py Log Message: ----------- REL: Release 1.10.2rc2 From noreply at github.com Tue Dec 8 03:24:49 2015 From: noreply at github.com (GitHub) Date: Tue, 08 Dec 2015 00:24:49 -0800 Subject: [Numpy-svn] [numpy/numpy] 2620f2: [doc] Fix title of governance section in docs Message-ID: <566693d1e8c2d_71583fa5ca1312bc17919b@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 2620f2306a24f934986a3357e2f275cb3a158a1e https://github.com/numpy/numpy/commit/2620f2306a24f934986a3357e2f275cb3a158a1e Author: Nathaniel J. Smith Date: 2015-12-07 (Mon, 07 Dec 2015) Changed paths: M doc/source/dev/governance/index.rst Log Message: ----------- [doc] Fix title of governance section in docs Commit: dfdd1884591928e07231ec772a05a9ce490060b8 https://github.com/numpy/numpy/commit/dfdd1884591928e07231ec772a05a9ce490060b8 Author: seberg Date: 2015-12-08 (Tue, 08 Dec 2015) Changed paths: M doc/source/dev/governance/index.rst Log Message: ----------- Merge pull request #6789 from njsmith/governance-title-tweak [doc] Fix title of governance section in docs Compare: https://github.com/numpy/numpy/compare/1579ba490d5b...dfdd18845919 From noreply at github.com Wed Dec 9 04:39:47 2015 From: noreply at github.com (GitHub) Date: Wed, 09 Dec 2015 01:39:47 -0800 Subject: [Numpy-svn] [numpy/numpy] 9d1160: [TST] fix test_dtype_error to actually test what i... Message-ID: <5667f6e3b44f6_670d3f9a8b8252c03795a@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 9d11602007923310d996ebed636281afe940c783 https://github.com/numpy/numpy/commit/9d11602007923310d996ebed636281afe940c783 Author: Nathaniel J. Smith Date: 2015-12-08 (Tue, 08 Dec 2015) Changed paths: M numpy/lib/tests/test_nanfunctions.py Log Message: ----------- [TST] fix test_dtype_error to actually test what it's supposed to Discovered while cleaning up uses of the silly aliases like 'np.object'. Commit: 6d323aea603c9c077d9c84db91bf7fb6fd1a34e9 https://github.com/numpy/numpy/commit/6d323aea603c9c077d9c84db91bf7fb6fd1a34e9 Author: seberg Date: 2015-12-09 (Wed, 09 Dec 2015) Changed paths: M numpy/lib/tests/test_nanfunctions.py Log Message: ----------- Merge pull request #6797 from njsmith/clean-up-builtin-alias-usages [TST] fix test_dtype_error to actually test what it's supposed to Compare: https://github.com/numpy/numpy/compare/dfdd18845919...6d323aea603c From noreply at github.com Thu Dec 10 17:39:26 2015 From: noreply at github.com (GitHub) Date: Thu, 10 Dec 2015 14:39:26 -0800 Subject: [Numpy-svn] [numpy/numpy] 397437: DOC: update HOWTO_RELEASE document Message-ID: <5669ff1ecb50c_344f3ffc293c32b81524cb@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 39743700bd6c4f5c891a99a76b65243c53374827 https://github.com/numpy/numpy/commit/39743700bd6c4f5c891a99a76b65243c53374827 Author: Matthew Brett Date: 2015-10-26 (Mon, 26 Oct 2015) Changed paths: M doc/HOWTO_RELEASE.rst.txt Log Message: ----------- DOC: update HOWTO_RELEASE document An update of release notes from experience of releasing 1.9.3, with responses to comments by Chuck and Ralf. Commit: e914ef2e5968de337e2f81dcdc1baa379b2145de https://github.com/numpy/numpy/commit/e914ef2e5968de337e2f81dcdc1baa379b2145de Author: Charles Harris Date: 2015-12-10 (Thu, 10 Dec 2015) Changed paths: M doc/HOWTO_RELEASE.rst.txt Log Message: ----------- Merge pull request #6344 from matthew-brett/update-howto-release MRG: update HOWTO_RELEASE document Compare: https://github.com/numpy/numpy/compare/6d323aea603c...e914ef2e5968 From noreply at github.com Thu Dec 10 19:24:12 2015 From: noreply at github.com (GitHub) Date: Thu, 10 Dec 2015 16:24:12 -0800 Subject: [Numpy-svn] [numpy/numpy] 504740: ENH: make f2py an executable module Message-ID: <566a17accbe25_2db63f876756b2a04492a@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.9.x Home: https://github.com/numpy/numpy Commit: 5047404e8b2bbd7d826861073736662671b0271f https://github.com/numpy/numpy/commit/5047404e8b2bbd7d826861073736662671b0271f Author: Julian Taylor Date: 2015-09-23 (Wed, 23 Sep 2015) Changed paths: A numpy/f2py/__main__.py M numpy/f2py/setup.py Log Message: ----------- ENH: make f2py an executable module allows pep 338 execution via python -mnumpy.f2py Commit: 7c20ee5aa225308e4dc5b126a566ece126c73515 https://github.com/numpy/numpy/commit/7c20ee5aa225308e4dc5b126a566ece126c73515 Author: Matthew Brett Date: 2015-09-23 (Wed, 23 Sep 2015) Changed paths: M numpy/f2py/setup.py Log Message: ----------- BUG: fix f2py shebang line for bdist wheel, egg Command `bdist_wheel` was generating a shebang line for f2py that uses the Python path for the building Python. If we are building a wheel or an egg, use the generic `#!python` shebang line for the f2py script instead, which setuptools will modify at install time. Closes gh-5812. Commit: fc4904c3fd8ee540225843cc177259a204ad1db7 https://github.com/numpy/numpy/commit/fc4904c3fd8ee540225843cc177259a204ad1db7 Author: Matthew Brett Date: 2015-09-23 (Wed, 23 Sep 2015) Changed paths: M numpy/f2py/setup.py Log Message: ----------- ENH: add bdist_mpkg, bdist_wininst to binary dists Add other binary distribution formats to list of build commands that should generate !python shebang lines. Commit: 96ed3d2b20c5fdab135c42e7bd45d8bd3df26f3b https://github.com/numpy/numpy/commit/96ed3d2b20c5fdab135c42e7bd45d8bd3df26f3b Author: Matthew Brett Date: 2015-09-23 (Wed, 23 Sep 2015) Changed paths: M numpy/f2py/setup.py Log Message: ----------- BUG: revert use of !python for bdist_mpkg scripts bdist_mpkg is a very crude install method that will assume the path to Python, so we should not use the `#!python` form when installing scripts in bdist_mpkg. Commit: b064e4b4cb3f8d571605ee8a7f53c9ce2d5df879 https://github.com/numpy/numpy/commit/b064e4b4cb3f8d571605ee8a7f53c9ce2d5df879 Author: Matthew Brett Date: 2015-09-23 (Wed, 23 Sep 2015) Changed paths: M .travis.yml A numpy/tests/test_scripts.py M tools/travis-test.sh Log Message: ----------- TEST: add module to test installed scripts Module tests whether we can run f2py and return correct version. Skip this test when running in-place (we don't install f2py in that case). Use our own virtualenvs in travis-ci to avoid picking up travis' numpy. Commit: c2b6ab9924271b96d3c783f7818723a1bb8f511a https://github.com/numpy/numpy/commit/c2b6ab9924271b96d3c783f7818723a1bb8f511a Author: Matthew Brett Date: 2015-12-10 (Thu, 10 Dec 2015) Changed paths: M .travis.yml A numpy/f2py/__main__.py M numpy/f2py/setup.py A numpy/tests/test_scripts.py M tools/travis-test.sh Log Message: ----------- Merge pull request #6350 from matthew-brett/prepare-1.9.4 MRG: preparing for potential 1.9.4 release Fix f2py shebang line error for wheel installs. Compare: https://github.com/numpy/numpy/compare/edb902cdc657...c2b6ab992427 From noreply at github.com Thu Dec 10 19:54:26 2015 From: noreply at github.com (GitHub) Date: Thu, 10 Dec 2015 16:54:26 -0800 Subject: [Numpy-svn] [numpy/numpy] 27abfb: ENH deploy dev wheels to rackspace Message-ID: <566a1ec2e77d3_7f643fc8924b12bc1321b5@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 27abfb4923a3ff0433bb7f5dd08a42603641b519 https://github.com/numpy/numpy/commit/27abfb4923a3ff0433bb7f5dd08a42603641b519 Author: Olivier Grisel Date: 2015-12-10 (Thu, 10 Dec 2015) Changed paths: M .travis.yml M tools/travis-test.sh A tools/travis-upload-wheel.sh Log Message: ----------- ENH deploy dev wheels to rackspace Commit: 582f1fd8447321451197c2d47bad13d039f5964a https://github.com/numpy/numpy/commit/582f1fd8447321451197c2d47bad13d039f5964a Author: Nathaniel J. Smith Date: 2015-12-11 (Fri, 11 Dec 2015) Changed paths: M .travis.yml M tools/travis-test.sh A tools/travis-upload-wheel.sh Log Message: ----------- Merge pull request #6768 from ogrisel/travis-wheels Deploy dev wheels to rackspace from travis Compare: https://github.com/numpy/numpy/compare/e914ef2e5968...582f1fd84473 From noreply at github.com Fri Dec 11 02:03:32 2015 From: noreply at github.com (GitHub) Date: Thu, 10 Dec 2015 23:03:32 -0800 Subject: [Numpy-svn] [numpy/numpy] bb959e: MAINT: Replace assert with assert_(...) in some te... Message-ID: <566a754490db2_72bd3f9ec165729c95397@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: bb959e1857c3ba2ad98ab87f13fdcc6b43740ffb https://github.com/numpy/numpy/commit/bb959e1857c3ba2ad98ab87f13fdcc6b43740ffb Author: Charles Harris Date: 2015-12-10 (Thu, 10 Dec 2015) Changed paths: M numpy/core/tests/test_datetime.py M numpy/core/tests/test_defchararray.py M numpy/core/tests/test_deprecations.py M numpy/core/tests/test_mem_overlap.py M numpy/core/tests/test_memmap.py M numpy/core/tests/test_multiarray.py M numpy/core/tests/test_numeric.py M numpy/core/tests/test_scalarinherit.py M numpy/core/tests/test_shape_base.py M numpy/core/tests/test_ufunc.py M numpy/lib/tests/test_io.py M numpy/linalg/tests/test_linalg.py M numpy/ma/tests/test_core.py Log Message: ----------- MAINT: Replace assert with assert_(...) in some tests. Commit: 9424d3616d8c80b7f0b4dcf31ff3c335db76c0fa https://github.com/numpy/numpy/commit/9424d3616d8c80b7f0b4dcf31ff3c335db76c0fa Author: Jaime Date: 2015-12-11 (Fri, 11 Dec 2015) Changed paths: M numpy/core/tests/test_datetime.py M numpy/core/tests/test_defchararray.py M numpy/core/tests/test_deprecations.py M numpy/core/tests/test_mem_overlap.py M numpy/core/tests/test_memmap.py M numpy/core/tests/test_multiarray.py M numpy/core/tests/test_numeric.py M numpy/core/tests/test_scalarinherit.py M numpy/core/tests/test_shape_base.py M numpy/core/tests/test_ufunc.py M numpy/lib/tests/test_io.py M numpy/linalg/tests/test_linalg.py M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6808 from charris/fix-assert-in-tests MAINT: Replace assert with assert_(...) in some tests. Compare: https://github.com/numpy/numpy/compare/582f1fd84473...9424d3616d8c From noreply at github.com Fri Dec 11 12:46:38 2015 From: noreply at github.com (GitHub) Date: Fri, 11 Dec 2015 09:46:38 -0800 Subject: [Numpy-svn] [numpy/numpy] 192bff: TST, BUG: Make test_mvoid_multidim_print work for 3... Message-ID: <566b0bfe2e963_33a73f9a7be472bc11579f@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 192bff5ea1b37359c45e4e54c4b14b402e368663 https://github.com/numpy/numpy/commit/192bff5ea1b37359c45e4e54c4b14b402e368663 Author: Charles Harris Date: 2015-12-11 (Fri, 11 Dec 2015) Changed paths: M numpy/ma/tests/test_core.py Log Message: ----------- TST,BUG: Make test_mvoid_multidim_print work for 32 bit systems. The test currently uses an ` Date: 2015-12-11 (Fri, 11 Dec 2015) Changed paths: M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6813 from charris/fix-ma-print-test TST,BUG: Make test_mvoid_multidim_print work for 32 bit systems. Compare: https://github.com/numpy/numpy/compare/9424d3616d8c...dcdc9dea7863 From noreply at github.com Fri Dec 11 13:53:07 2015 From: noreply at github.com (GitHub) Date: Fri, 11 Dec 2015 10:53:07 -0800 Subject: [Numpy-svn] [numpy/numpy] 470647: TST, BUG: Make test_mvoid_multidim_print work for 3... Message-ID: <566b1b934141_55b73fb140fe52a01379e@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 470647a368363769514b5c38825ae4daf3d7cadc https://github.com/numpy/numpy/commit/470647a368363769514b5c38825ae4daf3d7cadc Author: Charles Harris Date: 2015-12-11 (Fri, 11 Dec 2015) Changed paths: M numpy/ma/tests/test_core.py Log Message: ----------- TST,BUG: Make test_mvoid_multidim_print work for 32 bit systems. The test currently uses an ` Date: 2015-12-11 (Fri, 11 Dec 2015) Changed paths: M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6815 from charris/backport-6813 Backport 6813 Compare: https://github.com/numpy/numpy/compare/ca42ee3dc1aa...ccb842593b41 From noreply at github.com Fri Dec 11 17:03:46 2015 From: noreply at github.com (GitHub) Date: Fri, 11 Dec 2015 14:03:46 -0800 Subject: [Numpy-svn] [numpy/numpy] bcc433: TST: Fix test_mvoid_multidim_print failures on Pyt... Message-ID: <566b4842ba3be_36f93fd7b91192b81306c@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: bcc4334edaed9c72b1f81a07ff920a44e1a6ff13 https://github.com/numpy/numpy/commit/bcc4334edaed9c72b1f81a07ff920a44e1a6ff13 Author: Christoph Gohlke Date: 2015-12-11 (Fri, 11 Dec 2015) Changed paths: M numpy/ma/tests/test_core.py Log Message: ----------- TST: Fix test_mvoid_multidim_print failures on Python 2.x for Windows Commit: 90a1a9fe056d84a8ddc51a50076247d658b9b669 https://github.com/numpy/numpy/commit/90a1a9fe056d84a8ddc51a50076247d658b9b669 Author: Charles Harris Date: 2015-12-11 (Fri, 11 Dec 2015) Changed paths: M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6819 from cgohlke/patch-2 TST: Fix test_mvoid_multidim_print failures on Python 2.x for Windows Compare: https://github.com/numpy/numpy/compare/dcdc9dea7863...90a1a9fe056d From noreply at github.com Fri Dec 11 18:58:52 2015 From: noreply at github.com (GitHub) Date: Fri, 11 Dec 2015 15:58:52 -0800 Subject: [Numpy-svn] [numpy/numpy] f02a62: TST: Fix test_mvoid_multidim_print failures on Pyt... Message-ID: <566b633c646b2_7f6a3f8d204af2bc5156c@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: f02a62a8eaa063fabc9d36b7fc9fc27982b6f5f3 https://github.com/numpy/numpy/commit/f02a62a8eaa063fabc9d36b7fc9fc27982b6f5f3 Author: Christoph Gohlke Date: 2015-12-11 (Fri, 11 Dec 2015) Changed paths: M numpy/ma/tests/test_core.py Log Message: ----------- TST: Fix test_mvoid_multidim_print failures on Python 2.x for Windows Commit: ff81f3a7ac975f458df80ca10dc2806718ae22d7 https://github.com/numpy/numpy/commit/ff81f3a7ac975f458df80ca10dc2806718ae22d7 Author: Charles Harris Date: 2015-12-11 (Fri, 11 Dec 2015) Changed paths: M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6822 from charris/backport-6819 Backport 6819 Compare: https://github.com/numpy/numpy/compare/ccb842593b41...ff81f3a7ac97 From noreply at github.com Sat Dec 12 03:01:03 2015 From: noreply at github.com (GitHub) Date: Sat, 12 Dec 2015 00:01:03 -0800 Subject: [Numpy-svn] [numpy/numpy] 7747c3: BUG: Fix thinko in assert_deprecated() Message-ID: <566bd43fe8777_606a3f94906312bc7306e@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7747c3a88cb0cad5687093d1345efcb2743fc1d5 https://github.com/numpy/numpy/commit/7747c3a88cb0cad5687093d1345efcb2743fc1d5 Author: Boxiang Sun Date: 2015-12-12 (Sat, 12 Dec 2015) Changed paths: M numpy/core/tests/test_deprecations.py Log Message: ----------- BUG: Fix thinko in assert_deprecated() assert_deprecated() was recently reworked for stylistic changes (in 0aa32608 "STY: Minor style cleanups in tests and C code.") but made a thinko - `lst` is already a list of warnings, so we don't need to put that into [] braces when preparing assertion text. If we do the reporting breaks: In [1]: msg = "4 warnings found but 3 expected." In [2]: lst = ['CategoryA', 'CategoryB', 'CategoryC'] In [3]: n.join([msg] + [lst]) TypeError Traceback (most recent call last) ----> 1 n.join([msg] + [lst]) TypeError: sequence item 1: expected string, list found Fix it. Cc: Charles Harris Commit: 623fdd95cf1505fb867cab0040d68714422ac1bf https://github.com/numpy/numpy/commit/623fdd95cf1505fb867cab0040d68714422ac1bf Author: Nathaniel J. Smith Date: 2015-12-12 (Sat, 12 Dec 2015) Changed paths: M numpy/core/tests/test_deprecations.py Log Message: ----------- Merge pull request #6791 from Daetalus/bug_fixing BUG: Fix thinko in assert_deprecated() Compare: https://github.com/numpy/numpy/compare/90a1a9fe056d...623fdd95cf15 From noreply at github.com Sat Dec 12 08:43:47 2015 From: noreply at github.com (GitHub) Date: Sat, 12 Dec 2015 05:43:47 -0800 Subject: [Numpy-svn] [numpy/numpy] 41de3c: Updated typos in histogram bin estimator equations Message-ID: <566c24936e778_7f13faa6a1d72bc1274aa@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 41de3c2d8c84dbfa406ccb77dd67d55f555bee8a https://github.com/numpy/numpy/commit/41de3c2d8c84dbfa406ccb77dd67d55f555bee8a Author: Mad Physicist Date: 2015-12-11 (Fri, 11 Dec 2015) Changed paths: M numpy/lib/function_base.py Log Message: ----------- Updated typos in histogram bin estimator equations In all cases, it's either ...*n^(-1/3) or .../n^(1/3), not both. The actual functions are implemented correctly. Commit: 9ba59e1174cfdc0cf29b654cf0bf49a59e1a3631 https://github.com/numpy/numpy/commit/9ba59e1174cfdc0cf29b654cf0bf49a59e1a3631 Author: Jaime Date: 2015-12-12 (Sat, 12 Dec 2015) Changed paths: M numpy/lib/function_base.py Log Message: ----------- Merge pull request #6820 from madphysicist/patch-1 Updated typos in histogram bin estimator equations Compare: https://github.com/numpy/numpy/compare/623fdd95cf15...9ba59e1174cf From noreply at github.com Sat Dec 12 10:49:45 2015 From: noreply at github.com (GitHub) Date: Sat, 12 Dec 2015 07:49:45 -0800 Subject: [Numpy-svn] [numpy/numpy] c9cf21: BUG: Disable 32-bit msvc9 compiler optimizations f... Message-ID: <566c4219ae092_7e693f864c3c52a0137336@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: c9cf216086502d3e38dc6b703fc9763525d83c66 https://github.com/numpy/numpy/commit/c9cf216086502d3e38dc6b703fc9763525d83c66 Author: Christoph Gohlke Date: 2015-12-11 (Fri, 11 Dec 2015) Changed paths: M numpy/core/src/npymath/npy_math.c.src Log Message: ----------- BUG: Disable 32-bit msvc9 compiler optimizations for npy_rint Commit: 7f2258dbec043f18d3cd746c8133ac3dd3a4a368 https://github.com/numpy/numpy/commit/7f2258dbec043f18d3cd746c8133ac3dd3a4a368 Author: Charles Harris Date: 2015-12-12 (Sat, 12 Dec 2015) Changed paths: M numpy/core/src/npymath/npy_math.c.src Log Message: ----------- Merge pull request #6817 from cgohlke/patch-1 BUG: Disable 32-bit msvc9 compiler optimizations for npy_rint Compare: https://github.com/numpy/numpy/compare/9ba59e1174cf...7f2258dbec04 From noreply at github.com Sat Dec 12 11:22:49 2015 From: noreply at github.com (GitHub) Date: Sat, 12 Dec 2015 08:22:49 -0800 Subject: [Numpy-svn] [numpy/numpy] 77fcac: BUG: Disable 32-bit msvc9 compiler optimizations f... Message-ID: <566c49d98674c_18ba3fd4525772c0354d9@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 77fcac1e555504042830a7c6db5900b0ba341c8e https://github.com/numpy/numpy/commit/77fcac1e555504042830a7c6db5900b0ba341c8e Author: Christoph Gohlke Date: 2015-12-12 (Sat, 12 Dec 2015) Changed paths: M numpy/core/src/npymath/npy_math.c.src Log Message: ----------- BUG: Disable 32-bit msvc9 compiler optimizations for npy_rint Commit: 974dadad2c79aff1a1e7901f86b47b9e216e3a8b https://github.com/numpy/numpy/commit/974dadad2c79aff1a1e7901f86b47b9e216e3a8b Author: Charles Harris Date: 2015-12-12 (Sat, 12 Dec 2015) Changed paths: M numpy/core/src/npymath/npy_math.c.src Log Message: ----------- Merge pull request #6826 from charris/backport-6817 Backport 6817 Compare: https://github.com/numpy/numpy/compare/ff81f3a7ac97...974dadad2c79 From noreply at github.com Sat Dec 12 11:54:21 2015 From: noreply at github.com (GitHub) Date: Sat, 12 Dec 2015 08:54:21 -0800 Subject: [Numpy-svn] [numpy/numpy] 7546bf: DOC: Update 1.10.2 release notes with fixes for wi... Message-ID: <566c513d5c277_583b3fa0d94cb29c1357d6@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7546bf894d12b4a5b085713526a359f7224d7e27 https://github.com/numpy/numpy/commit/7546bf894d12b4a5b085713526a359f7224d7e27 Author: Charles Harris Date: 2015-12-12 (Sat, 12 Dec 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update 1.10.2 release notes with fixes for windows i386. Commit: 33d77247d711b16831283661f14ecc7f8f179d73 https://github.com/numpy/numpy/commit/33d77247d711b16831283661f14ecc7f8f179d73 Author: Charles Harris Date: 2015-12-12 (Sat, 12 Dec 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- Merge pull request #6827 from charris/update-1.10.2-notes DOC: Update 1.10.2 release notes with fixes for windows i386. Compare: https://github.com/numpy/numpy/compare/7f2258dbec04...33d77247d711 From noreply at github.com Sat Dec 12 11:58:47 2015 From: noreply at github.com (GitHub) Date: Sat, 12 Dec 2015 08:58:47 -0800 Subject: [Numpy-svn] [numpy/numpy] b899e3: DOC: Update 1.10.2 release notes with fixes for wi... Message-ID: <566c52475d7c_56a13fa00df9729c5871b@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: b899e36ecaea6b780700539c73391f89e609ba6a https://github.com/numpy/numpy/commit/b899e36ecaea6b780700539c73391f89e609ba6a Author: Charles Harris Date: 2015-12-12 (Sat, 12 Dec 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update 1.10.2 release notes with fixes for windows i386. [ci skip] Commit: bbc5474d3042affdd0a146304072e8d504f67434 https://github.com/numpy/numpy/commit/bbc5474d3042affdd0a146304072e8d504f67434 Author: Charles Harris Date: 2015-12-12 (Sat, 12 Dec 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- Merge pull request #6828 from charris/backport-6827 Backport 6827 Compare: https://github.com/numpy/numpy/compare/974dadad2c79...bbc5474d3042 From noreply at github.com Sun Dec 13 19:03:33 2015 From: noreply at github.com (GitHub) Date: Sun, 13 Dec 2015 16:03:33 -0800 Subject: [Numpy-svn] [numpy/numpy] f0d6d4: CI: run benchmark suite in travis-CI Message-ID: <566e075520b59_3f923f9c254632b851134@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: f0d6d470c13405f9643f8bde50da74170b66c5c0 https://github.com/numpy/numpy/commit/f0d6d470c13405f9643f8bde50da74170b66c5c0 Author: Pauli Virtanen Date: 2015-12-14 (Mon, 14 Dec 2015) Changed paths: M .travis.yml M tools/travis-test.sh Log Message: ----------- CI: run benchmark suite in travis-CI This should ensure the suite stays in working condition, not to produce reliable timing information. Commit: ba212b909f97565f8d18d695d47646993faf88c7 https://github.com/numpy/numpy/commit/ba212b909f97565f8d18d695d47646993faf88c7 Author: Nathaniel J. Smith Date: 2015-12-14 (Mon, 14 Dec 2015) Changed paths: M .travis.yml M tools/travis-test.sh Log Message: ----------- Merge pull request #6830 from pv/travis-asv CI: run benchmark suite in travis-CI Compare: https://github.com/numpy/numpy/compare/33d77247d711...ba212b909f97 From noreply at github.com Sun Dec 13 19:04:29 2015 From: noreply at github.com (GitHub) Date: Sun, 13 Dec 2015 16:04:29 -0800 Subject: [Numpy-svn] [numpy/numpy] ff92db: BENCH: speed up benchmark suite import time; bump ... Message-ID: <566e078dd1f44_1ee73fdc68b8129c55798@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: ff92db22b195c05aace5c277527078b6055c3f78 https://github.com/numpy/numpy/commit/ff92db22b195c05aace5c277527078b6055c3f78 Author: Pauli Virtanen Date: 2015-12-14 (Mon, 14 Dec 2015) Changed paths: M benchmarks/benchmarks/bench_indexing.py M benchmarks/benchmarks/bench_io.py M benchmarks/benchmarks/bench_linalg.py M benchmarks/benchmarks/bench_reduce.py M benchmarks/benchmarks/bench_ufunc.py M benchmarks/benchmarks/common.py Log Message: ----------- BENCH: speed up benchmark suite import time; bump bench_ufunc timeout upward The input data generation in benchmarks/common.py takes ~ 1s, and it is not used by most benchmarks. Generate it lazily instead, making sure the generation is done in the setup() routines. Commit: 919f233cef59d8c2abebb2f1acf5b86363fad93d https://github.com/numpy/numpy/commit/919f233cef59d8c2abebb2f1acf5b86363fad93d Author: Pauli Virtanen Date: 2015-12-14 (Mon, 14 Dec 2015) Changed paths: M benchmarks/benchmarks/bench_indexing.py M benchmarks/benchmarks/bench_io.py M benchmarks/benchmarks/bench_linalg.py M benchmarks/benchmarks/bench_reduce.py M benchmarks/benchmarks/bench_ufunc.py M benchmarks/benchmarks/common.py Log Message: ----------- Merge pull request #6829 from pv/bench-speed BENCH: speed up benchmark suite import time Compare: https://github.com/numpy/numpy/compare/ba212b909f97...919f233cef59 From noreply at github.com Mon Dec 14 15:58:03 2015 From: noreply at github.com (GitHub) Date: Mon, 14 Dec 2015 12:58:03 -0800 Subject: [Numpy-svn] [numpy/numpy] 5667fb: REL: Release 1.10.2 Message-ID: <566f2d5bc9223_4b183fa46d5b12a083825@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/tags/v1.10.2 Home: https://github.com/numpy/numpy Commit: 5667fbafb5d84e3a412a07aac72c769baa590579 https://github.com/numpy/numpy/commit/5667fbafb5d84e3a412a07aac72c769baa590579 Author: Charles R Harris Date: 2015-12-14 (Mon, 14 Dec 2015) Changed paths: M pavement.py M setup.py Log Message: ----------- REL: Release 1.10.2 From noreply at github.com Mon Dec 14 16:11:29 2015 From: noreply at github.com (GitHub) Date: Mon, 14 Dec 2015 13:11:29 -0800 Subject: [Numpy-svn] [numpy/numpy] f2fd27: MAINT: Resolve import naming collision and optimiz... Message-ID: <566f30817dba3_e063fec670072b8364cc@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: f2fd27266f49fe6cbe8a85a03d7d43216cf7c8f7 https://github.com/numpy/numpy/commit/f2fd27266f49fe6cbe8a85a03d7d43216cf7c8f7 Author: Francis T. O'Donovan Date: 2015-12-12 (Sat, 12 Dec 2015) Changed paths: M numpy/distutils/ccompiler.py Log Message: ----------- MAINT: Resolve import naming collision and optimize imports Commit: 8544ae6bfb563dbe90defb013efd2dd8e3e2c205 https://github.com/numpy/numpy/commit/8544ae6bfb563dbe90defb013efd2dd8e3e2c205 Author: Ralf Gommers Date: 2015-12-14 (Mon, 14 Dec 2015) Changed paths: M numpy/distutils/ccompiler.py Log Message: ----------- Merge pull request #6825 from proinsias/numpy.distutils.ccompiler MAINT: remove duplicate import in distutils.ccompiler Compare: https://github.com/numpy/numpy/compare/919f233cef59...8544ae6bfb56 From noreply at github.com Mon Dec 14 16:18:10 2015 From: noreply at github.com (GitHub) Date: Mon, 14 Dec 2015 13:18:10 -0800 Subject: [Numpy-svn] [numpy/numpy] a1f419: Made changes in numpy/numpy/random/mtrand/matrand.... Message-ID: <566f3212c0a50_4d603f9e1f5292a06425f@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: a1f4197a02d8c1bfa6a2130c0fb1e21da4138981 https://github.com/numpy/numpy/commit/a1f4197a02d8c1bfa6a2130c0fb1e21da4138981 Author: gopalmeena Date: 2015-12-15 (Tue, 15 Dec 2015) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- Made changes in numpy/numpy/random/mtrand/matrand.pyx Commit: b0f5c569997782ea74e42b142db4b3b5b2d27323 https://github.com/numpy/numpy/commit/b0f5c569997782ea74e42b142db4b3b5b2d27323 Author: Jaime Date: 2015-12-14 (Mon, 14 Dec 2015) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- Merge pull request #6832 from gopalmeena/Patch6792 DOC: Fixes #6792 in numpy/numpy/random/mtrand/matrand.pyx Compare: https://github.com/numpy/numpy/compare/8544ae6bfb56...b0f5c5699977 From noreply at github.com Tue Dec 15 13:02:01 2015 From: noreply at github.com (GitHub) Date: Tue, 15 Dec 2015 10:02:01 -0800 Subject: [Numpy-svn] [numpy/numpy] 9ec7b1: Correct reference to Johnk's algorithm Message-ID: <567055996afae_70ec3ff1e96032c088181@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 9ec7b11a8e458c810acd958a5072686458f84f57 https://github.com/numpy/numpy/commit/9ec7b11a8e458c810acd958a5072686458f84f57 Author: John Bjorn Nelson Date: 2015-12-15 (Tue, 15 Dec 2015) Changed paths: M numpy/random/mtrand/distributions.c Log Message: ----------- Correct reference to Johnk's algorithm Commit: 8ad5f85f849354a3bce9f2790b1fd3a1e30bbbd8 https://github.com/numpy/numpy/commit/8ad5f85f849354a3bce9f2790b1fd3a1e30bbbd8 Author: Nathaniel J. Smith Date: 2015-12-15 (Tue, 15 Dec 2015) Changed paths: M numpy/random/mtrand/distributions.c Log Message: ----------- Merge pull request #6836 from jbn/master Correct reference to Johnk's algorithm Compare: https://github.com/numpy/numpy/compare/b0f5c5699977...8ad5f85f8493 From noreply at github.com Wed Dec 16 13:48:17 2015 From: noreply at github.com (GitHub) Date: Wed, 16 Dec 2015 10:48:17 -0800 Subject: [Numpy-svn] [numpy/numpy] 1376d4: TST: Update travis testing script. Message-ID: <5671b1f137f77_4d083fd7851d32a02567e@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 1376d43ccbee0a227be599736e320d7667def4d4 https://github.com/numpy/numpy/commit/1376d43ccbee0a227be599736e320d7667def4d4 Author: Charles Harris Date: 2015-12-16 (Wed, 16 Dec 2015) Changed paths: M .travis.yml M tools/travis-test.sh Log Message: ----------- TST: Update travis testing script. * Fixes for travis ci move to GCE. * Change i386 test to use Python 2.7 Commit: c7ee0a10e650ee7570e46bce8b76ed13fb71bc30 https://github.com/numpy/numpy/commit/c7ee0a10e650ee7570e46bce8b76ed13fb71bc30 Author: Charles Harris Date: 2015-12-16 (Wed, 16 Dec 2015) Changed paths: M .travis.yml M tools/travis-test.sh Log Message: ----------- Merge pull request #6840 from charris/1.10.x-travis-fixes TST: Update travis testing script in 1.10.x Compare: https://github.com/numpy/numpy/compare/bbc5474d3042...c7ee0a10e650 From noreply at github.com Wed Dec 16 13:54:14 2015 From: noreply at github.com (GitHub) Date: Wed, 16 Dec 2015 10:54:14 -0800 Subject: [Numpy-svn] [numpy/numpy] 293e93: TST: Clean up travis-test and make it work with cu... Message-ID: <5671b356c4b90_65683fd82ffcf2a06252d@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 293e930ad4be772ec07f2777527f1d211257c3b5 https://github.com/numpy/numpy/commit/293e930ad4be772ec07f2777527f1d211257c3b5 Author: Charles Harris Date: 2015-12-16 (Wed, 16 Dec 2015) Changed paths: M .travis.yml M tools/travis-test.sh Log Message: ----------- TST: Clean up travis-test and make it work with current travis ci. Travis ci is migrating to GCI and the 32 bit tests broke in the process. This cleans up the tools/travis-test script, fixes it for current travis, and changes the 32 bit test to use python 2.7 in order to turn up errors involving python long integers. In preparation for dropping Python 3.2 and 3.3, the USE_DEBUG test is run in the travis ci trusty beta so that python3 defaults to 3.4. Commit: 402e3d3498b680cd6522b4c1fa55902d2e5ed57f https://github.com/numpy/numpy/commit/402e3d3498b680cd6522b4c1fa55902d2e5ed57f Author: Charles Harris Date: 2015-12-16 (Wed, 16 Dec 2015) Changed paths: M .travis.yml M tools/travis-test.sh Log Message: ----------- Merge pull request #6837 from charris/test-chroot-build Fix travis ci 32 bit testing failures. Compare: https://github.com/numpy/numpy/compare/8ad5f85f8493...402e3d3498b6 From noreply at github.com Thu Dec 17 10:10:17 2015 From: noreply at github.com (GitHub) Date: Thu, 17 Dec 2015 07:10:17 -0800 Subject: [Numpy-svn] [numpy/numpy] 4ddc2a: BUG: Fix use of python 3 only FileNotFoundError in... Message-ID: <5672d059426e3_74003fba72fd32b8999b5@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 4ddc2a5850ac3d8a0514a6330ef7350022ee262b https://github.com/numpy/numpy/commit/4ddc2a5850ac3d8a0514a6330ef7350022ee262b Author: Charles Harris Date: 2015-12-16 (Wed, 16 Dec 2015) Changed paths: M numpy/tests/test_scripts.py Log Message: ----------- BUG: Fix use of python 3 only FileNotFoundError in test_f2py. Also rewrite error messages so that they read more like warnings than errors. Commit: 2befd8d7decee62233ace32297806aac363868df https://github.com/numpy/numpy/commit/2befd8d7decee62233ace32297806aac363868df Author: Charles Harris Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M numpy/tests/test_scripts.py Log Message: ----------- Merge pull request #6843 from charris/fix-filenotfounderror BUG: Fix use of python 3 only FileNotFoundError in test_f2py. Compare: https://github.com/numpy/numpy/compare/402e3d3498b6...2befd8d7dece From noreply at github.com Thu Dec 17 12:11:27 2015 From: noreply at github.com (GitHub) Date: Thu, 17 Dec 2015 09:11:27 -0800 Subject: [Numpy-svn] [numpy/numpy] 084952: MAINT: minor spelling and grammar corrections Message-ID: <5672ecbf8dd60_4daa3fca88a0129c1142ec@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 084952500f388caed570b0961194a5b76bd8b6be https://github.com/numpy/numpy/commit/084952500f388caed570b0961194a5b76bd8b6be Author: gfyoung Date: 2015-12-16 (Wed, 16 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst M numpy/core/tests/test_deprecations.py M numpy/random/tests/test_random.py Log Message: ----------- MAINT: minor spelling and grammar corrections Commit: e680923e9adb80b179d5b315f41d26b68767f81e https://github.com/numpy/numpy/commit/e680923e9adb80b179d5b315f41d26b68767f81e Author: Charles Harris Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst M numpy/core/tests/test_deprecations.py M numpy/random/tests/test_random.py Log Message: ----------- Merge pull request #6831 from gfyoung/spelling_corrections Minor Spelling and Grammar Corrections Compare: https://github.com/numpy/numpy/compare/2befd8d7dece...e680923e9adb From noreply at github.com Thu Dec 17 12:12:31 2015 From: noreply at github.com (GitHub) Date: Thu, 17 Dec 2015 09:12:31 -0800 Subject: [Numpy-svn] [numpy/numpy] dafefb: DOC: Update future changes in the 1.11.0 release n... Message-ID: <5672ecffe4a03_4fa33fca646bf29c63028@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: dafefb2c3721a1fb43469c8068b57bf8f5b22aa6 https://github.com/numpy/numpy/commit/dafefb2c3721a1fb43469c8068b57bf8f5b22aa6 Author: Charles Harris Date: 2015-12-08 (Tue, 08 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst Log Message: ----------- DOC: Update future changes in the 1.11.0 release notes. Support for Python 2.6, 3.2, and 3.3 will be dropped in Numpy 1.12.0. [ci skip] Commit: a32a78643c7ba3dfe9a8c9079e620bcf9926b419 https://github.com/numpy/numpy/commit/a32a78643c7ba3dfe9a8c9079e620bcf9926b419 Author: Charles Harris Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst Log Message: ----------- Merge pull request #6795 from charris/update-1.11.0-notes DOC: Update future changes in the 1.11.0 release notes. Compare: https://github.com/numpy/numpy/compare/e680923e9adb...a32a78643c7b From noreply at github.com Thu Dec 17 12:14:53 2015 From: noreply at github.com (GitHub) Date: Thu, 17 Dec 2015 09:14:53 -0800 Subject: [Numpy-svn] [numpy/numpy] 18b010: BLD: use setuptools for bdist_egg distributions Message-ID: <5672ed8d73ae8_30ae3f8cea1c32a030299@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 18b01010077b034556cdb73b751544a06f48dcdc https://github.com/numpy/numpy/commit/18b01010077b034556cdb73b751544a06f48dcdc Author: Eugene Krokhalev Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M setup.py Log Message: ----------- BLD: use setuptools for bdist_egg distributions Not only bdist_wheel needs setuptools Commit: 207b8385697deb164a6511e9bb71c7a899f633ca https://github.com/numpy/numpy/commit/207b8385697deb164a6511e9bb71c7a899f633ca Author: Charles Harris Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M setup.py Log Message: ----------- Merge pull request #6848 from heni/fix/bdist_egg-support BLD: use setuptools for bdist_egg distributions Compare: https://github.com/numpy/numpy/compare/a32a78643c7b...207b8385697d From noreply at github.com Thu Dec 17 12:16:26 2015 From: noreply at github.com (GitHub) Date: Thu, 17 Dec 2015 09:16:26 -0800 Subject: [Numpy-svn] [numpy/numpy] 8f87f4: STY: Style fixes for .travis.yml and travis-upload... Message-ID: <5672edeaba334_32323f9c2ed1329c560a6@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 8f87f431e275c243d17857ba7a027102dd81cfe8 https://github.com/numpy/numpy/commit/8f87f431e275c243d17857ba7a027102dd81cfe8 Author: Charles Harris Date: 2015-12-16 (Wed, 16 Dec 2015) Changed paths: M .travis.yml M tools/travis-upload-wheel.sh Log Message: ----------- STY: Style fixes for .travis.yml and travis-upload-wheel.sh * shell script style fixes inspired by google shell style guide https://google.github.io/styleguide/shell.xml * .travis.yml longline breaking tested with http://yaml-online-parser.appspot.com/ Commit: 316c19836aa86e3fe26a041877aabbce432ec554 https://github.com/numpy/numpy/commit/316c19836aa86e3fe26a041877aabbce432ec554 Author: Charles Harris Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M .travis.yml M tools/travis-upload-wheel.sh Log Message: ----------- Merge pull request #6842 from charris/fix-script-style STY: Style fixes for .travis.yml and travis-upload-wheel.sh Compare: https://github.com/numpy/numpy/compare/207b8385697d...316c19836aa8 From noreply at github.com Thu Dec 17 13:17:39 2015 From: noreply at github.com (GitHub) Date: Thu, 17 Dec 2015 10:17:39 -0800 Subject: [Numpy-svn] [numpy/numpy] 1b0911: BUG: Fix use of python 3 only FileNotFoundError in... Message-ID: <5672fc43dded3_77a73f875e7792bc3768a@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 1b0911000c2be7846ce9b4300d0015eb3693cb11 https://github.com/numpy/numpy/commit/1b0911000c2be7846ce9b4300d0015eb3693cb11 Author: Charles Harris Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M numpy/tests/test_scripts.py Log Message: ----------- BUG: Fix use of python 3 only FileNotFoundError in test_f2py. Also rewrite error messages so that they read more like warnings than errors. Commit: 075cc9836bc195413ec02384abe194df9077d3cb https://github.com/numpy/numpy/commit/075cc9836bc195413ec02384abe194df9077d3cb Author: Charles Harris Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M numpy/tests/test_scripts.py Log Message: ----------- Merge pull request #6850 from charris/backport-6843 Backport 6843 Compare: https://github.com/numpy/numpy/compare/c7ee0a10e650...075cc9836bc1 From noreply at github.com Thu Dec 17 14:42:17 2015 From: noreply at github.com (GitHub) Date: Thu, 17 Dec 2015 11:42:17 -0800 Subject: [Numpy-svn] [numpy/numpy] a9aae5: DOC: change uses of `rank` for `dimension` Message-ID: <56731019156ab_729b3fa22833d2b81655a6@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: a9aae5f30324a84e8caaaec91ab358e8e96b9a7b https://github.com/numpy/numpy/commit/a9aae5f30324a84e8caaaec91ab358e8e96b9a7b Author: Matthew Brett Date: 2015-12-16 (Wed, 16 Dec 2015) Changed paths: M doc/source/user/numpy-for-matlab-users.rst Log Message: ----------- DOC: change uses of `rank` for `dimension` We used to use ``rank`` to mean the number of axes in an array, but no more. Change these uses of rank to refer to dimensions. Closes gh-6839 Commit: 6e4e60140025190023fe96302949faa5f15c846a https://github.com/numpy/numpy/commit/6e4e60140025190023fe96302949faa5f15c846a Author: Charles Harris Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M doc/source/user/numpy-for-matlab-users.rst Log Message: ----------- Merge pull request #6841 from matthew-brett/rank-to-dimension DOC: change uses of `rank` for `dimension` Compare: https://github.com/numpy/numpy/compare/316c19836aa8...6e4e60140025 From noreply at github.com Thu Dec 17 15:49:53 2015 From: noreply at github.com (GitHub) Date: Thu, 17 Dec 2015 12:49:53 -0800 Subject: [Numpy-svn] [numpy/numpy] 1350b4: ENH: use linux fallocate to reserve diskspace in a... Message-ID: <56731ff11959e_6a883fb71fac329c73995@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 1350b46714ac8f6f04646ae637b84ef23c2ac917 https://github.com/numpy/numpy/commit/1350b46714ac8f6f04646ae637b84ef23c2ac917 Author: Julian Taylor Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M numpy/core/setup_common.py M numpy/core/src/multiarray/convert.c M numpy/core/tests/test_multiarray.py Log Message: ----------- ENH: use linux fallocate to reserve diskspace in array.tofile fallocate allows the filesystem to make smarter decisions about space allocation and gives a fast failure path for insufficient space. This is very important for filesystems that suffer a lot from fragmentation like btrfs. Restricted to linux only as that is the only system I know the behavior of. Other systems might also have this system call but we don't want to accidentally trigger explicit zeroing behavior as e.g. posix_fallocate would when there is no support for a real fallocate. Commit: 68355274ed556a7d6867ffb00d86fbcc2cfc1f15 https://github.com/numpy/numpy/commit/68355274ed556a7d6867ffb00d86fbcc2cfc1f15 Author: Julian Taylor Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst Log Message: ----------- DOC: add fallocate use to release notes Commit: 0757b34754aa7543576737d07ecdd9a14b7a23ca https://github.com/numpy/numpy/commit/0757b34754aa7543576737d07ecdd9a14b7a23ca Author: Charles Harris Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M numpy/core/src/multiarray/convert.c Log Message: ----------- STY: Minor C style fixups for convert.c. Commit: eaad7e8f3d9ebd0c85106e12b88f36f286941e1a https://github.com/numpy/numpy/commit/eaad7e8f3d9ebd0c85106e12b88f36f286941e1a Author: Charles Harris Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst M numpy/core/setup_common.py M numpy/core/src/multiarray/convert.c M numpy/core/tests/test_multiarray.py Log Message: ----------- Merge pull request #6851 from charris/rebase-gh-6692 Rebase gh 6692, ENH: use linux fallocate to reserve diskspace in array.tofile Compare: https://github.com/numpy/numpy/compare/6e4e60140025...eaad7e8f3d9e From noreply at github.com Thu Dec 17 17:27:09 2015 From: noreply at github.com (GitHub) Date: Thu, 17 Dec 2015 14:27:09 -0800 Subject: [Numpy-svn] [numpy/numpy] efc2e6: BUG, ENH: Add extension parameter to f2py.compile a... Message-ID: <567336bd541d4_36a3f94d0e6d29c109998@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: efc2e68c153cdfa12bf87b89f6f5ed0d2073cc51 https://github.com/numpy/numpy/commit/efc2e68c153cdfa12bf87b89f6f5ed0d2073cc51 Author: Alex Rogozhnikov Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M numpy/f2py/__init__.py Log Message: ----------- BUG,ENH: Add extension parameter to f2py.compile and fix verbose. 1. Verbose parameter was ignored earlier. 2. Allowed .f90 extensions for tempfiles Commit: d8967ceefe7afca7a260df3f744699d1512f6fd6 https://github.com/numpy/numpy/commit/d8967ceefe7afca7a260df3f744699d1512f6fd6 Author: Charles Harris Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst M numpy/f2py/__init__.py Log Message: ----------- DOC: Some documentation fixups. Add '.. versionadded:: 1.11.0' to the new `extension` parameter in f2py.compile and document it in the 1.11.0 release notes. Commit: dcc9b48e549efce6bdb966ea4204306e87abb73c https://github.com/numpy/numpy/commit/dcc9b48e549efce6bdb966ea4204306e87abb73c Author: Charles Harris Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst M numpy/f2py/__init__.py Log Message: ----------- Merge pull request #6852 from charris/fixup-gh-6696 Fixup #6696, updates to f2py.compile Compare: https://github.com/numpy/numpy/compare/eaad7e8f3d9e...dcc9b48e549e From noreply at github.com Thu Dec 17 23:36:01 2015 From: noreply at github.com (GitHub) Date: Thu, 17 Dec 2015 20:36:01 -0800 Subject: [Numpy-svn] [numpy/numpy] a6c69b: STY: Break some long lines in numpy-for-matlab-use... Message-ID: <56738d31a9e47_4ef3fbec2abd2c08143e@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: a6c69b0d2934523c6d37880c64bd012df8324e5b https://github.com/numpy/numpy/commit/a6c69b0d2934523c6d37880c64bd012df8324e5b Author: Charles Harris Date: 2015-12-17 (Thu, 17 Dec 2015) Changed paths: M doc/source/user/numpy-for-matlab-users.rst Log Message: ----------- STY: Break some long lines in numpy-for-matlab-users.rst. Commit: f7b07521ca811baa2fcc649a6dc5cf56f5c65fd0 https://github.com/numpy/numpy/commit/f7b07521ca811baa2fcc649a6dc5cf56f5c65fd0 Author: Jaime Date: 2015-12-18 (Fri, 18 Dec 2015) Changed paths: M doc/source/user/numpy-for-matlab-users.rst Log Message: ----------- Merge pull request #6853 from charris/break-long-lines STY: Break some long lines in numpy-for-matlab-users.rst. Compare: https://github.com/numpy/numpy/compare/dcc9b48e549e...f7b07521ca81 From noreply at github.com Fri Dec 18 07:21:06 2015 From: noreply at github.com (GitHub) Date: Fri, 18 Dec 2015 04:21:06 -0800 Subject: [Numpy-svn] [numpy/numpy] 088e20: DEP: Stricter arg checking for array ordering Message-ID: <5673fa324f0dd_30493fe67ead92c01446a7@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 088e20e272389395fb3fd24fed144ed19bae8cdb https://github.com/numpy/numpy/commit/088e20e272389395fb3fd24fed144ed19bae8cdb Author: gfyoung Date: 2015-12-18 (Fri, 18 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst M numpy/add_newdocs.py M numpy/core/src/multiarray/conversion_utils.c M numpy/core/tests/test_deprecations.py M numpy/lib/function_base.py M numpy/matrixlib/defmatrix.py Log Message: ----------- DEP: Stricter arg checking for array ordering The bug traces to the PyArray_OrderConverter method in conversion_utils.c, where no errors are thrown if the ORDER parameter passed in is not of the string data-type or has a string value of length greater than one. This commit causes a DeprecationWarning to be raised, which will later be turned into a TypeError or another type of error in a future release. Closes gh-6598. Commit: 3af5f0574740611076df9dc905330defab70a6dc https://github.com/numpy/numpy/commit/3af5f0574740611076df9dc905330defab70a6dc Author: seberg Date: 2015-12-18 (Fri, 18 Dec 2015) Changed paths: M doc/release/1.11.0-notes.rst M numpy/add_newdocs.py M numpy/core/src/multiarray/conversion_utils.c M numpy/core/tests/test_deprecations.py M numpy/lib/function_base.py M numpy/matrixlib/defmatrix.py Log Message: ----------- Merge pull request #6823 from gfyoung/order_arg_validate Stricter Argument Checking for Flatten Methods Compare: https://github.com/numpy/numpy/compare/f7b07521ca81...3af5f0574740 From noreply at github.com Fri Dec 18 13:44:09 2015 From: noreply at github.com (GitHub) Date: Fri, 18 Dec 2015 10:44:09 -0800 Subject: [Numpy-svn] [numpy/numpy] c5d8f5: DOC: fix method signatures in "array subclasses" Message-ID: <567453f92b633_1df23f834c97f2c063310@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: c5d8f5c9261a887349f46f4a12047a2d0b99d083 https://github.com/numpy/numpy/commit/c5d8f5c9261a887349f46f4a12047a2d0b99d083 Author: Matthias Geier Date: 2015-12-11 (Fri, 11 Dec 2015) Changed paths: M doc/source/reference/arrays.classes.rst Log Message: ----------- DOC: fix method signatures in "array subclasses" * Change ".. function::" -> ".. method::" * Remove "self" argument * Change "self" to "obj" in __array_finalize__ Commit: 25a54d59451c2dc2861cb4d254e0a1cc5a5f1192 https://github.com/numpy/numpy/commit/25a54d59451c2dc2861cb4d254e0a1cc5a5f1192 Author: Charles Harris Date: 2015-12-18 (Fri, 18 Dec 2015) Changed paths: M doc/source/reference/arrays.classes.rst Log Message: ----------- Merge pull request #6600 from mgeier/doc-ndarray-subclasses DOC: fix method signatures in "array subclasses" Compare: https://github.com/numpy/numpy/compare/3af5f0574740...25a54d59451c From noreply at github.com Fri Dec 18 14:18:52 2015 From: noreply at github.com (GitHub) Date: Fri, 18 Dec 2015 11:18:52 -0800 Subject: [Numpy-svn] [numpy/numpy] 42ba46: DOC, MAINT: Fix the numpy.ma.cov signature and doc... Message-ID: <56745c1cd199e_29e53fb758a752c073323@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 42ba464096da39bc267fd8cdfbcc4089c90f6686 https://github.com/numpy/numpy/commit/42ba464096da39bc267fd8cdfbcc4089c90f6686 Author: jason king Date: 2015-12-18 (Fri, 18 Dec 2015) Changed paths: M numpy/lib/function_base.py Log Message: ----------- DOC, MAINT: Fix the numpy.ma.cov signature and documentation. The rowvar and bias parameters are booleans, not integers. Commit: f660a5cfac6ffeecea7bd4e4de4726f324f5af27 https://github.com/numpy/numpy/commit/f660a5cfac6ffeecea7bd4e4de4726f324f5af27 Author: Jaime Date: 2015-12-18 (Fri, 18 Dec 2015) Changed paths: M numpy/lib/function_base.py Log Message: ----------- Merge pull request #6857 from charris/fixup-gh-6409 Fixup 6409, DOC, MAINT: Fix the numpy.ma.cov signature and documentation. Compare: https://github.com/numpy/numpy/compare/25a54d59451c...f660a5cfac6f From noreply at github.com Fri Dec 18 15:37:03 2015 From: noreply at github.com (GitHub) Date: Fri, 18 Dec 2015 12:37:03 -0800 Subject: [Numpy-svn] [numpy/numpy] abb80f: DOC: typo in the docstring of random.multinomial Message-ID: <56746e6f762a0_11bc3fdfee00d29c8011f@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: abb80f86435c368451729011efbde3544ca59baf https://github.com/numpy/numpy/commit/abb80f86435c368451729011efbde3544ca59baf Author: Evgeni Burovski Date: 2015-12-18 (Fri, 18 Dec 2015) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- DOC: typo in the docstring of random.multinomial Discuss a loaded dice with six sides. Also add the text about handling of input probabilities, as written by Robert Kern in gh-6612. [ci skip] Commit: 722b406f9291116c75207101165cefa58a83ed4d https://github.com/numpy/numpy/commit/722b406f9291116c75207101165cefa58a83ed4d Author: Charles Harris Date: 2015-12-18 (Fri, 18 Dec 2015) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- DOC: Update example in np.random.multinomial. Clarify that probabilities should be normalized. [ci skip] Commit: e2bdaccba1a8691f9223b059b981b2890bb13b09 https://github.com/numpy/numpy/commit/e2bdaccba1a8691f9223b059b981b2890bb13b09 Author: Charles Harris Date: 2015-12-18 (Fri, 18 Dec 2015) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- Merge pull request #6858 from charris/fixup-gh-6612 Fixup 6612, DOC: typo in the docstring of `random.multinomial` Compare: https://github.com/numpy/numpy/compare/f660a5cfac6f...e2bdaccba1a8 From noreply at github.com Sun Dec 20 01:35:44 2015 From: noreply at github.com (GitHub) Date: Sat, 19 Dec 2015 22:35:44 -0800 Subject: [Numpy-svn] [numpy/numpy] 8bc592: DOC: Use print only as function when print_functio... Message-ID: <56764c4084cfe_75783f90d91c529c11918e@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 8bc592fabf4a2b0bc76db996b1523330ba095be3 https://github.com/numpy/numpy/commit/8bc592fabf4a2b0bc76db996b1523330ba095be3 Author: gfyoung Date: 2015-12-19 (Sat, 19 Dec 2015) Changed paths: M numpy/add_newdocs.py M numpy/core/arrayprint.py M numpy/core/fromnumeric.py M numpy/core/numeric.py M numpy/core/numerictypes.py M numpy/core/records.py M numpy/core/shape_base.py M numpy/distutils/npy_pkg_config.py M numpy/distutils/system_info.py M numpy/doc/glossary.py M numpy/doc/misc.py M numpy/doc/subclassing.py M numpy/f2py/auxfuncs.py M numpy/lib/arrayterator.py M numpy/lib/financial.py M numpy/lib/function_base.py M numpy/lib/index_tricks.py M numpy/lib/polynomial.py M numpy/lib/tests/test_format.py M numpy/lib/twodim_base.py M numpy/lib/type_check.py M numpy/linalg/lapack_lite/clapack_scrub.py M numpy/linalg/linalg.py M numpy/ma/core.py M numpy/ma/extras.py M numpy/ma/tests/test_old_ma.py M numpy/matrixlib/defmatrix.py M numpy/testing/decorators.py M numpy/testing/noseclasses.py M numpy/testing/utils.py M tools/swig/test/testFortran.py M tools/win32build/misc/x86analysis.py Log Message: ----------- DOC: Use print only as function when print_function is imported from __future__ Closes gh-6863. Commit: 144c34b8ecd051e05a93c6268290eadb1827afb0 https://github.com/numpy/numpy/commit/144c34b8ecd051e05a93c6268290eadb1827afb0 Author: Jaime Date: 2015-12-20 (Sun, 20 Dec 2015) Changed paths: M numpy/add_newdocs.py M numpy/core/arrayprint.py M numpy/core/fromnumeric.py M numpy/core/numeric.py M numpy/core/numerictypes.py M numpy/core/records.py M numpy/core/shape_base.py M numpy/distutils/npy_pkg_config.py M numpy/distutils/system_info.py M numpy/doc/glossary.py M numpy/doc/misc.py M numpy/doc/subclassing.py M numpy/f2py/auxfuncs.py M numpy/lib/arrayterator.py M numpy/lib/financial.py M numpy/lib/function_base.py M numpy/lib/index_tricks.py M numpy/lib/polynomial.py M numpy/lib/tests/test_format.py M numpy/lib/twodim_base.py M numpy/lib/type_check.py M numpy/linalg/lapack_lite/clapack_scrub.py M numpy/linalg/linalg.py M numpy/ma/core.py M numpy/ma/extras.py M numpy/ma/tests/test_old_ma.py M numpy/matrixlib/defmatrix.py M numpy/testing/decorators.py M numpy/testing/noseclasses.py M numpy/testing/utils.py M tools/swig/test/testFortran.py M tools/win32build/misc/x86analysis.py Log Message: ----------- Merge pull request #6867 from gfyoung/print_fixes DOC: No Print Statements When Using print_function from __future__ Compare: https://github.com/numpy/numpy/compare/e2bdaccba1a8...144c34b8ecd0 From noreply at github.com Sun Dec 20 04:30:46 2015 From: noreply at github.com (GitHub) Date: Sun, 20 Dec 2015 01:30:46 -0800 Subject: [Numpy-svn] [numpy/numpy] 0574f6: MAINT: Remove commented out code blocks Message-ID: <567675469d767_4c9a3fe4ba5d12c075277@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 0574f62bf58eada5860fe0620151aede85a8dae4 https://github.com/numpy/numpy/commit/0574f62bf58eada5860fe0620151aede85a8dae4 Author: gfyoung Date: 2015-12-20 (Sun, 20 Dec 2015) Changed paths: M numpy/distutils/system_info.py M numpy/f2py/auxfuncs.py M numpy/linalg/lapack_lite/clapack_scrub.py M numpy/ma/tests/test_old_ma.py M numpy/testing/noseclasses.py M tools/swig/test/testFortran.py M tools/win32build/misc/x86analysis.py Log Message: ----------- MAINT: Remove commented out code blocks Commit: 21e5c067ed45968be36038023df0ffa4fa7a337b https://github.com/numpy/numpy/commit/21e5c067ed45968be36038023df0ffa4fa7a337b Author: Jaime Date: 2015-12-20 (Sun, 20 Dec 2015) Changed paths: M numpy/distutils/system_info.py M numpy/f2py/auxfuncs.py M numpy/linalg/lapack_lite/clapack_scrub.py M numpy/ma/tests/test_old_ma.py M numpy/testing/noseclasses.py M tools/swig/test/testFortran.py M tools/win32build/misc/x86analysis.py Log Message: ----------- Merge pull request #6868 from gfyoung/commented_code_removal Remove Commented Out Code Compare: https://github.com/numpy/numpy/compare/144c34b8ecd0...21e5c067ed45 From noreply at github.com Sun Dec 20 11:18:35 2015 From: noreply at github.com (GitHub) Date: Sun, 20 Dec 2015 08:18:35 -0800 Subject: [Numpy-svn] [numpy/numpy] 73ba00: TST: Add initial appveyor configuration with no op... Message-ID: <5676d4db79be9_2ed03ff1b9cc32c08341e@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 73ba0080600ab81361df2e83b1d6db2a33ae8bcd https://github.com/numpy/numpy/commit/73ba0080600ab81361df2e83b1d6db2a33ae8bcd Author: Ian Henriksen Date: 2015-12-19 (Sat, 19 Dec 2015) Changed paths: A appveyor.yml Log Message: ----------- TST: Add initial appveyor configuration with no optimized BLAS. Commit: cf3fa2d6cae8208a2f81dd70b0284c1546978e33 https://github.com/numpy/numpy/commit/cf3fa2d6cae8208a2f81dd70b0284c1546978e33 Author: Charles Harris Date: 2015-12-20 (Sun, 20 Dec 2015) Changed paths: A appveyor.yml Log Message: ----------- Merge pull request #6865 from insertinterestingnamehere/appveyor_setup TST: Add initial appveyor configuration with no optimized BLAS. Compare: https://github.com/numpy/numpy/compare/21e5c067ed45...cf3fa2d6cae8 From noreply at github.com Sun Dec 20 12:38:58 2015 From: noreply at github.com (GitHub) Date: Sun, 20 Dec 2015 09:38:58 -0800 Subject: [Numpy-svn] [numpy/numpy] 7fa533: Fix #6798 Message-ID: <5676e7b217e1a_d7b3fc15bfc92a091882@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7fa53390da958cc985bfaeb1620990ddd2255ce8 https://github.com/numpy/numpy/commit/7fa53390da958cc985bfaeb1620990ddd2255ce8 Author: Phaiax Date: 2015-12-18 (Fri, 18 Dec 2015) Changed paths: M numpy/fft/fftpack.py Log Message: ----------- Fix #6798 Commit: 44293bb2834f2a4495dacee4ba112a3bfeef5b0c https://github.com/numpy/numpy/commit/44293bb2834f2a4495dacee4ba112a3bfeef5b0c Author: Charles Harris Date: 2015-12-18 (Fri, 18 Dec 2015) Changed paths: M numpy/fft/fftpack.py Log Message: ----------- DOC: Clarify documentation for np.fft.ifft. The relationship between frequency and position in the input array is clarified. Commit: deaed3a5e45822047b30e85abba9f8928615f048 https://github.com/numpy/numpy/commit/deaed3a5e45822047b30e85abba9f8928615f048 Author: Charles Harris Date: 2015-12-20 (Sun, 20 Dec 2015) Changed paths: M numpy/fft/fftpack.py Log Message: ----------- Merge pull request #6859 from charris/fixup-gh-6799 Fixup 6799, DOC: doc mistake in ifft - closes #6798. Compare: https://github.com/numpy/numpy/compare/cf3fa2d6cae8...deaed3a5e458 From noreply at github.com Sun Dec 20 12:39:28 2015 From: noreply at github.com (GitHub) Date: Sun, 20 Dec 2015 09:39:28 -0800 Subject: [Numpy-svn] [numpy/numpy] 4626b5: DOC: Update docstrings of np.sum and np.prod. Message-ID: <5676e7d0111a4_20183fb8fcc2d2c085693@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 4626b59a490bb5f35830a7b6bb74853a9c14aa63 https://github.com/numpy/numpy/commit/4626b59a490bb5f35830a7b6bb74853a9c14aa63 Author: Nathaniel Hellabyte Date: 2015-12-18 (Fri, 18 Dec 2015) Changed paths: M numpy/core/fromnumeric.py Log Message: ----------- DOC: Update docstrings of np.sum and np.prod. * Improved language of sum doc for axis subheading. Added clarification of important axis values--{0,1}->iterative {row,column} sum. * Improved language of product axis subheading. Commit: 5a5329d5d03d3e4ee5dc201ce0f64f9d3f821e78 https://github.com/numpy/numpy/commit/5a5329d5d03d3e4ee5dc201ce0f64f9d3f821e78 Author: Charles Harris Date: 2015-12-18 (Fri, 18 Dec 2015) Changed paths: M numpy/core/fromnumeric.py Log Message: ----------- DOC: Clarify docstrings of np.sum and np.prod. Commit: f125b7d456717b366df1ed756656e3670a8a8d54 https://github.com/numpy/numpy/commit/f125b7d456717b366df1ed756656e3670a8a8d54 Author: Charles Harris Date: 2015-12-20 (Sun, 20 Dec 2015) Changed paths: M numpy/core/fromnumeric.py Log Message: ----------- Merge pull request #6856 from charris/fixup-gh-4130 Fixup 4130, DOC: Update docstrings of np.sum and np.prod. Compare: https://github.com/numpy/numpy/compare/deaed3a5e458...f125b7d45671 From noreply at github.com Sun Dec 20 12:47:45 2015 From: noreply at github.com (GitHub) Date: Sun, 20 Dec 2015 09:47:45 -0800 Subject: [Numpy-svn] [numpy/numpy] 443184: ENH: Add context manager `temppath` to manage a te... Message-ID: <5676e9c1d34a4_7ab23feee2a6b2b851359@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 443184b12513ce2a8adcc2a81c143bc4bc697219 https://github.com/numpy/numpy/commit/443184b12513ce2a8adcc2a81c143bc4bc697219 Author: Charles Harris Date: 2015-12-19 (Sat, 19 Dec 2015) Changed paths: M numpy/testing/tests/test_utils.py M numpy/testing/utils.py Log Message: ----------- ENH: Add context manager `temppath` to manage a temporary file. Context manager intended for use when the same temporary file needs to be opened and closed more than once. The context manager creates the file, closes it, and returns the path to the file. On exit from the context block the file is removed. The file should be closed before exiting the context as an error will be raised on windows if not. Also fix up the `tempdir` context manager to deal with exceptions. Tests are added for both `temppath` and `tempdir`. Commit: c4156cfbe9c22ab99473346b7757d2b54b46baa3 https://github.com/numpy/numpy/commit/c4156cfbe9c22ab99473346b7757d2b54b46baa3 Author: Charles Harris Date: 2015-12-20 (Sun, 20 Dec 2015) Changed paths: M numpy/lib/tests/test_io.py M numpy/testing/tests/test_utils.py Log Message: ----------- MAINT: Use temppath in test_not_closing_opened_fid. The test is in numpy/lib/tests/test_io.py. This commit is intended as a demonstration of using temppath. Commit: 765422cfa5a959985808bbf11f7a6a58a9dc5e46 https://github.com/numpy/numpy/commit/765422cfa5a959985808bbf11f7a6a58a9dc5e46 Author: Charles Harris Date: 2015-12-20 (Sun, 20 Dec 2015) Changed paths: M numpy/lib/tests/test_io.py M numpy/testing/tests/test_utils.py M numpy/testing/utils.py Log Message: ----------- Merge pull request #6866 from charris/tempfile-context-manager ENH: Tempfile context manager Compare: https://github.com/numpy/numpy/compare/f125b7d45671...765422cfa5a9 From noreply at github.com Tue Dec 22 17:28:19 2015 From: noreply at github.com (GitHub) Date: Tue, 22 Dec 2015 14:28:19 -0800 Subject: [Numpy-svn] [numpy/numpy] 68bcaa: TST: Add a 32 bit Python 3 build to the appveyor b... Message-ID: <5679ce83717fb_4c9a3fe4ba5d12c013928e@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 68bcaa13904f6e9efaef9ec3ae27797f648ee80c https://github.com/numpy/numpy/commit/68bcaa13904f6e9efaef9ec3ae27797f648ee80c Author: Ian Henriksen Date: 2015-12-22 (Tue, 22 Dec 2015) Changed paths: M appveyor.yml Log Message: ----------- TST: Add a 32 bit Python 3 build to the appveyor build matrix. Commit: 925f26d1c8b48004f5fbbc5298399a6475dffbf0 https://github.com/numpy/numpy/commit/925f26d1c8b48004f5fbbc5298399a6475dffbf0 Author: Charles Harris Date: 2015-12-22 (Tue, 22 Dec 2015) Changed paths: M appveyor.yml Log Message: ----------- Merge pull request #6874 from insertinterestingnamehere/appveyor TST: Add a 32 bit Python 3 build to the appveyor build matrix. Compare: https://github.com/numpy/numpy/compare/765422cfa5a9...925f26d1c8b4 From noreply at github.com Tue Dec 22 22:36:30 2015 From: noreply at github.com (GitHub) Date: Tue, 22 Dec 2015 19:36:30 -0800 Subject: [Numpy-svn] [numpy/numpy] 331409: DOC: Fix poly_val description for 'x' input Message-ID: <567a16be5d609_39d73fcd0620b29c13115b@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 33140978603936fe2c93555e6badce55a841d432 https://github.com/numpy/numpy/commit/33140978603936fe2c93555e6badce55a841d432 Author: gfyoung Date: 2015-12-22 (Tue, 22 Dec 2015) Changed paths: M numpy/lib/polynomial.py Log Message: ----------- DOC: Fix poly_val description for 'x' input Closes gh-6849. Commit: 8d46b559bfc42d6e040884744753d80ac48e155b https://github.com/numpy/numpy/commit/8d46b559bfc42d6e040884744753d80ac48e155b Author: Charles Harris Date: 2015-12-22 (Tue, 22 Dec 2015) Changed paths: M numpy/lib/polynomial.py Log Message: ----------- Merge pull request #6873 from gfyoung/poly_doc_fix DOC: Fix poly_val description for 'x' input Compare: https://github.com/numpy/numpy/compare/925f26d1c8b4...8d46b559bfc4 From noreply at github.com Wed Dec 23 10:26:36 2015 From: noreply at github.com (GitHub) Date: Wed, 23 Dec 2015 07:26:36 -0800 Subject: [Numpy-svn] [numpy/numpy] f1e4ad: Fix version number in the document Message-ID: <567abd2c16e48_2e653ff22e4152c01251d1@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: f1e4ad4bc086dd8cd234054e6c28ea5dc8fb7725 https://github.com/numpy/numpy/commit/f1e4ad4bc086dd8cd234054e6c28ea5dc8fb7725 Author: Ryosuke Okuta Date: 2015-12-23 (Wed, 23 Dec 2015) Changed paths: M doc/neps/npy-format.rst Log Message: ----------- Fix version number in the document This PR fix version number of the format specification. Commit: d05b94544a060e8197bb3f8c2955cd8aedfacfff https://github.com/numpy/numpy/commit/d05b94544a060e8197bb3f8c2955cd8aedfacfff Author: Charles Harris Date: 2015-12-23 (Wed, 23 Dec 2015) Changed paths: M doc/neps/npy-format.rst Log Message: ----------- Merge pull request #6876 from okuta/fix-version DOC: Fix version number of the format specification. Compare: https://github.com/numpy/numpy/compare/8d46b559bfc4...d05b94544a06 From noreply at github.com Wed Dec 23 18:58:58 2015 From: noreply at github.com (GitHub) Date: Wed, 23 Dec 2015 15:58:58 -0800 Subject: [Numpy-svn] [numpy/numpy] 47ad21: REL: Update pavement.py and setup.py to reflect cu... Message-ID: <567b35428675d_7eea3ff0fc1212b8160283@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 47ad210a115d2c5d5f288677136a996118f44249 https://github.com/numpy/numpy/commit/47ad210a115d2c5d5f288677136a996118f44249 Author: Charles Harris Date: 2015-12-23 (Wed, 23 Dec 2015) Changed paths: M pavement.py M setup.py Log Message: ----------- REL: Update pavement.py and setup.py to reflect current version. With the release of 1.10.2, the version should be updated to 1.10.3. Commit: cd48c065fc3685622485431326e9f5c09e6779ed https://github.com/numpy/numpy/commit/cd48c065fc3685622485431326e9f5c09e6779ed Author: Nathaniel J. Smith Date: 2015-12-23 (Wed, 23 Dec 2015) Changed paths: M pavement.py M setup.py Log Message: ----------- Merge pull request #6884 from charris/update-1.10.x-branch REL: Update pavement.py and setup.py to reflect current version. Compare: https://github.com/numpy/numpy/compare/075cc9836bc1...cd48c065fc36 From noreply at github.com Wed Dec 23 20:32:08 2015 From: noreply at github.com (GitHub) Date: Wed, 23 Dec 2015 17:32:08 -0800 Subject: [Numpy-svn] [numpy/numpy] e5d61d: typo corrrected. Message-ID: <567b4b18bbf3c_27143fe2db91f2a01468ec@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: e5d61d6f946ef75b822d937b801a02f64736e53f https://github.com/numpy/numpy/commit/e5d61d6f946ef75b822d937b801a02f64736e53f Author: Daniel Date: 2015-12-23 (Wed, 23 Dec 2015) Changed paths: M numpy/doc/structured_arrays.py Log Message: ----------- typo corrrected. Commit: 17ec49de1e0c482398f54b165c4ccc6cdcf43ac2 https://github.com/numpy/numpy/commit/17ec49de1e0c482398f54b165c4ccc6cdcf43ac2 Author: argriffing Date: 2015-12-23 (Wed, 23 Dec 2015) Changed paths: M numpy/doc/structured_arrays.py Log Message: ----------- Merge pull request #6879 from dabidan/patch-2 typo corrrected. Compare: https://github.com/numpy/numpy/compare/d05b94544a06...17ec49de1e0c From noreply at github.com Thu Dec 24 02:02:54 2015 From: noreply at github.com (GitHub) Date: Wed, 23 Dec 2015 23:02:54 -0800 Subject: [Numpy-svn] [numpy/numpy] 29a333: BUG: Fix tempfile failures on window. Message-ID: <567b989e7feab_50f3ffce50db2a0557cd@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 29a33301d7c90fb22e8ee6533195b0a7c203de91 https://github.com/numpy/numpy/commit/29a33301d7c90fb22e8ee6533195b0a7c203de91 Author: Charles Harris Date: 2015-12-23 (Wed, 23 Dec 2015) Changed paths: M numpy/core/tests/test_longdouble.py Log Message: ----------- BUG: Fix tempfile failures on window. Temporary files on windows cannot be held open by two files at once. Commit: 76f2870e2f9c821b704ead165e13e173282f0aa9 https://github.com/numpy/numpy/commit/76f2870e2f9c821b704ead165e13e173282f0aa9 Author: Nathaniel J. Smith Date: 2015-12-24 (Thu, 24 Dec 2015) Changed paths: M numpy/core/tests/test_longdouble.py Log Message: ----------- Merge pull request #6880 from charris/fix-windows-tempfile BUG: Fix tempfile failures on window. Compare: https://github.com/numpy/numpy/compare/17ec49de1e0c...76f2870e2f9c From noreply at github.com Sat Dec 26 13:57:11 2015 From: noreply at github.com (GitHub) Date: Sat, 26 Dec 2015 10:57:11 -0800 Subject: [Numpy-svn] [numpy/numpy] f9976c: Fix carriage return inside commented python code Message-ID: <567ee307ebdbe_5603fae6e82f29c517d7@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: f9976c82d33431693b1a1af30549cdb1d7bee4ad https://github.com/numpy/numpy/commit/f9976c82d33431693b1a1af30549cdb1d7bee4ad Author: Vincent Legoll Date: 2015-12-26 (Sat, 26 Dec 2015) Changed paths: M doc/source/reference/arrays.ndarray.rst Log Message: ----------- Fix carriage return inside commented python code This looks more conventionnal Commit: c9a83043c0669fd17306843eb21abd236b675537 https://github.com/numpy/numpy/commit/c9a83043c0669fd17306843eb21abd236b675537 Author: argriffing Date: 2015-12-26 (Sat, 26 Dec 2015) Changed paths: M doc/source/reference/arrays.ndarray.rst Log Message: ----------- Merge pull request #6888 from vincent-legoll/master Fix carriage return inside commented python code Compare: https://github.com/numpy/numpy/compare/76f2870e2f9c...c9a83043c066 From noreply at github.com Sat Dec 26 18:47:09 2015 From: noreply at github.com (GitHub) Date: Sat, 26 Dec 2015 15:47:09 -0800 Subject: [Numpy-svn] [numpy/numpy] 130150: Update and rename README.txt to README.md Message-ID: <567f26fda7058_50c73faacfcc52b8641f4@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 1301507a4a7679a2aaa80b82f4b99af9b84bfa85 https://github.com/numpy/numpy/commit/1301507a4a7679a2aaa80b82f4b99af9b84bfa85 Author: anatoly techtonik Date: 2015-12-26 (Sat, 26 Dec 2015) Changed paths: A README.md R README.txt Log Message: ----------- Update and rename README.txt to README.md Add Travis build status on the main GitHub page. Prettified markup Commit: 106bfd604607f97754a7107aa00c519c16716261 https://github.com/numpy/numpy/commit/106bfd604607f97754a7107aa00c519c16716261 Author: Charles Harris Date: 2015-12-26 (Sat, 26 Dec 2015) Changed paths: A README.md R README.txt Log Message: ----------- Merge pull request #6889 from techtonik/patch-2 Update and rename README.txt to README.md Compare: https://github.com/numpy/numpy/compare/c9a83043c066...106bfd604607 From noreply at github.com Mon Dec 28 13:50:57 2015 From: noreply at github.com (GitHub) Date: Mon, 28 Dec 2015 10:50:57 -0800 Subject: [Numpy-svn] [numpy/numpy] 7cebe8: FIX: Fix MKL for Linux Message-ID: <56818491d033b_46ed3f8fe4bc72b8233923@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7cebe883b612efe2a3bf51b83917ea6cdb8f679f https://github.com/numpy/numpy/commit/7cebe883b612efe2a3bf51b83917ea6cdb8f679f Author: Eric Larson Date: 2015-12-28 (Mon, 28 Dec 2015) Changed paths: M numpy/distutils/fcompiler/intel.py Log Message: ----------- FIX: Fix MKL for Linux Commit: 66bd83dd9eb11d6127d222a5cfa79b4ac640fadf https://github.com/numpy/numpy/commit/66bd83dd9eb11d6127d222a5cfa79b4ac640fadf Author: Eric Larson Date: 2015-12-28 (Mon, 28 Dec 2015) Changed paths: M numpy/distutils/fcompiler/intel.py Log Message: ----------- DOC: Comment all O1s [ci skip] Commit: ecbcbe034b17f5d1b599bd22eef2cd9c017d85dc https://github.com/numpy/numpy/commit/ecbcbe034b17f5d1b599bd22eef2cd9c017d85dc Author: Charles Harris Date: 2015-12-28 (Mon, 28 Dec 2015) Changed paths: M numpy/distutils/fcompiler/intel.py Log Message: ----------- Merge pull request #6892 from Eric89GXL/mkl-fix FIX: Fix MKL for Linux Compare: https://github.com/numpy/numpy/compare/106bfd604607...ecbcbe034b17 From noreply at github.com Mon Dec 28 17:28:18 2015 From: noreply at github.com (GitHub) Date: Mon, 28 Dec 2015 14:28:18 -0800 Subject: [Numpy-svn] [numpy/numpy] d7a68a: ENH: Allow random_integers to include the maximum ... Message-ID: <5681b782d24e5_19c63f84864032c01081fe@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: d7a68afd3dddb65bd8edad0d484e1333daafa631 https://github.com/numpy/numpy/commit/d7a68afd3dddb65bd8edad0d484e1333daafa631 Author: gfyoung Date: 2015-12-28 (Mon, 28 Dec 2015) Changed paths: M numpy/random/mtrand/mtrand.pyx M numpy/random/tests/test_random.py Log Message: ----------- ENH: Allow random_integers to include the maximum np.iinfo('l').max Redistributes the code between the randint and random_integers methods so that we can generate integers up to and including np.iinfo('l').max with random_integers, which previously would have caused an OverflowError. Commit: efd5fbe1234cb140624e80ac262f3d64d35dd8c7 https://github.com/numpy/numpy/commit/efd5fbe1234cb140624e80ac262f3d64d35dd8c7 Author: Charles Harris Date: 2015-12-28 (Mon, 28 Dec 2015) Changed paths: M numpy/random/mtrand/mtrand.pyx M numpy/random/tests/test_random.py Log Message: ----------- Merge pull request #6885 from gfyoung/rand_integers_expand ENH: Expand Argument Range of random_integers Compare: https://github.com/numpy/numpy/compare/ecbcbe034b17...efd5fbe1234c From noreply at github.com Tue Dec 29 04:26:30 2015 From: noreply at github.com (GitHub) Date: Tue, 29 Dec 2015 01:26:30 -0800 Subject: [Numpy-svn] [numpy/numpy] 4f7a60: TST: Only use 32 bit Python 2.7 to test numpy on a... Message-ID: <568251c68a998_70d13f9b7944d2bc2115aa@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 4f7a60538eb031092ab84816afa56b51ee84f8bd https://github.com/numpy/numpy/commit/4f7a60538eb031092ab84816afa56b51ee84f8bd Author: Charles Harris Date: 2015-12-28 (Mon, 28 Dec 2015) Changed paths: M appveyor.yml Log Message: ----------- TST: Only use 32 bit Python 2.7 to test numpy on appveyor. This avoids a test error on appveyor that might be fixed if Visual C++ Compiler for Python 2.7 is used. Numpy itself builds and runs on appveyor with both 32 and 64 bit python 2.7, so this is only a test issue. Another option might be to disable the test, but it may be useful to some on other platforms. Closes #6882. Commit: 004639d07fd161d1394f5dda1b6ed42c777f3c80 https://github.com/numpy/numpy/commit/004639d07fd161d1394f5dda1b6ed42c777f3c80 Author: Ralf Gommers Date: 2015-12-29 (Tue, 29 Dec 2015) Changed paths: M appveyor.yml Log Message: ----------- Merge pull request #6893 from charris/fix-appveyor-gh-6882 TST: Only use 32 bit Python 2.7 to test numpy on appveyor. Compare: https://github.com/numpy/numpy/compare/efd5fbe1234c...004639d07fd1 From noreply at github.com Wed Dec 30 04:51:08 2015 From: noreply at github.com (GitHub) Date: Wed, 30 Dec 2015 01:51:08 -0800 Subject: [Numpy-svn] [numpy/numpy] eebb30: MAINT: Cleaned up unused variables and spelling mi... Message-ID: <5683a90c8234d_1e273fa5156dd2c0149075@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: eebb304a0c91c9f52bc883a352b2520e3ca7c88e https://github.com/numpy/numpy/commit/eebb304a0c91c9f52bc883a352b2520e3ca7c88e Author: gfyoung Date: 2015-12-29 (Tue, 29 Dec 2015) Changed paths: M numpy/random/mtrand/mtrand.pyx M numpy/random/tests/test_random.py Log Message: ----------- MAINT: Cleaned up unused variables and spelling mistakes in np.random modules Commit: d2435303f298eaae9118b17588d1db8c7144bb0f https://github.com/numpy/numpy/commit/d2435303f298eaae9118b17588d1db8c7144bb0f Author: seberg Date: 2015-12-30 (Wed, 30 Dec 2015) Changed paths: M numpy/random/mtrand/mtrand.pyx M numpy/random/tests/test_random.py Log Message: ----------- Merge pull request #6903 from gfyoung/np_random_cleanup MAINT: Removed Spelling Mistakes and Unused Variables in np.random Modules Compare: https://github.com/numpy/numpy/compare/004639d07fd1...d2435303f298 From noreply at github.com Wed Dec 30 09:16:35 2015 From: noreply at github.com (GitHub) Date: Wed, 30 Dec 2015 06:16:35 -0800 Subject: [Numpy-svn] [numpy/numpy] 237ab4: [FIX] fix NoseTester's raise_warning default Message-ID: <5683e74393219_36ce3f92af7452bc657b3@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 237ab4398ac880be30fc262e7bf6163e9baff921 https://github.com/numpy/numpy/commit/237ab4398ac880be30fc262e7bf6163e9baff921 Author: Nathaniel J. Smith Date: 2015-12-29 (Tue, 29 Dec 2015) Changed paths: M numpy/__init__.py M numpy/testing/nosetester.py Log Message: ----------- [FIX] fix NoseTester's raise_warning default Our test-runner's raise_warning mode traditionally has varied depending on whether we have a development or release version of numpy: for development versions we raise on warnings, and for release versions we don't. This is all very sensible... *if* you're running numpy's test suite. But our test-runner is also used by other packages like scipy, and it doesn't make sense for scipy's raise_warning mode to vary depending on whether *numpy* is a development or release version. (It should vary depending on whether the scipy-under-test is a development or release version.) So this commit moves the numpy-version-dependent raise_warning logic out of the generic NoseTester class and into numpy-specific code. (See scipy/scipy#5609 for more discussion.) Commit: a61ddd3812cc95f9c9e6eeac7f8bcfb92130f978 https://github.com/numpy/numpy/commit/a61ddd3812cc95f9c9e6eeac7f8bcfb92130f978 Author: Nathaniel J. Smith Date: 2015-12-30 (Wed, 30 Dec 2015) Changed paths: M numpy/__init__.py M numpy/core/__init__.py M numpy/distutils/__init__.py M numpy/f2py/__init__.py M numpy/fft/__init__.py M numpy/lib/__init__.py M numpy/linalg/__init__.py M numpy/ma/__init__.py M numpy/matrixlib/__init__.py M numpy/polynomial/__init__.py M numpy/random/__init__.py M numpy/testing/__init__.py M numpy/testing/nosetester.py Log Message: ----------- [TST] Refactor new raise_warnings logic for subpackage test suites Commit: b057b7a22e6d9a290d607971cd5365ce75872d03 https://github.com/numpy/numpy/commit/b057b7a22e6d9a290d607971cd5365ce75872d03 Author: Ralf Gommers Date: 2015-12-30 (Wed, 30 Dec 2015) Changed paths: M numpy/__init__.py M numpy/core/__init__.py M numpy/distutils/__init__.py M numpy/f2py/__init__.py M numpy/fft/__init__.py M numpy/lib/__init__.py M numpy/linalg/__init__.py M numpy/ma/__init__.py M numpy/matrixlib/__init__.py M numpy/polynomial/__init__.py M numpy/random/__init__.py M numpy/testing/__init__.py M numpy/testing/nosetester.py Log Message: ----------- Merge pull request #6901 from njsmith/test-warning-defaults [FIX] fix NoseTester's raise_warning default Compare: https://github.com/numpy/numpy/compare/d2435303f298...b057b7a22e6d From noreply at github.com Thu Dec 31 13:32:13 2015 From: noreply at github.com (GitHub) Date: Thu, 31 Dec 2015 10:32:13 -0800 Subject: [Numpy-svn] [numpy/numpy] fdadc1: MAINT: Cleanup and spelling fixups in ma.core test... Message-ID: <568574ad3ae89_73e83f8b4dde32b819374c@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: fdadc1a6d7d2dd9e1dbd4261116d0f40b0911679 https://github.com/numpy/numpy/commit/fdadc1a6d7d2dd9e1dbd4261116d0f40b0911679 Author: gfyoung Date: 2015-12-30 (Wed, 30 Dec 2015) Changed paths: M numpy/ma/tests/test_core.py Log Message: ----------- MAINT: Cleanup and spelling fixups in ma.core tests Commit: c8862d75be1f33a5408b112e4f6da32a617ef6e6 https://github.com/numpy/numpy/commit/c8862d75be1f33a5408b112e4f6da32a617ef6e6 Author: Jaime Date: 2015-12-31 (Thu, 31 Dec 2015) Changed paths: M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6913 from gfyoung/ma_core_tests_cleanup MAINT: Cleanup and Spelling Fixups in ma.core Tests Compare: https://github.com/numpy/numpy/compare/b057b7a22e6d...c8862d75be1f From noreply at github.com Thu Dec 31 18:14:15 2015 From: noreply at github.com (GitHub) Date: Thu, 31 Dec 2015 15:14:15 -0800 Subject: [Numpy-svn] [numpy/numpy] f68cad: DOC: update min nose version in import error messa... Message-ID: <5685b6c7e1610_d213fcadcb392a01022a1@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: f68cadd7b1c4f5c4d4d94acce63f86d279925a7a https://github.com/numpy/numpy/commit/f68cadd7b1c4f5c4d4d94acce63f86d279925a7a Author: Ralf Gommers Date: 2015-12-31 (Thu, 31 Dec 2015) Changed paths: M README.md M numpy/testing/nosetester.py Log Message: ----------- DOC: update min nose version in import error message, and add note to README Addresses comment in gh-4074. Commit: 4e669d99fdb0456502a33e56c92de66a25385a50 https://github.com/numpy/numpy/commit/4e669d99fdb0456502a33e56c92de66a25385a50 Author: Charles Harris Date: 2015-12-31 (Thu, 31 Dec 2015) Changed paths: M README.md M numpy/testing/nosetester.py Log Message: ----------- Merge pull request #6915 from rgommers/doc-nose-dependency DOC: update min nose version in import error message Compare: https://github.com/numpy/numpy/compare/c8862d75be1f...4e669d99fdb0 From noreply at github.com Thu Dec 31 18:16:12 2015 From: noreply at github.com (GitHub) Date: Thu, 31 Dec 2015 15:16:12 -0800 Subject: [Numpy-svn] [numpy/numpy] a547d0: DOC: fix broken link in user guide. Closes gh-690... Message-ID: <5685b73c8e351_28cc3fcad2a2b2a09236a@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: a547d0e40c2b1b14b4448da51018bfccd4d55edb https://github.com/numpy/numpy/commit/a547d0e40c2b1b14b4448da51018bfccd4d55edb Author: Ralf Gommers Date: 2015-12-31 (Thu, 31 Dec 2015) Changed paths: M doc/source/user/building.rst Log Message: ----------- DOC: fix broken link in user guide. Closes gh-6906. [ci skip] Commit: a496e11c52d4dc595cfa3110fe2e0debff566ebb https://github.com/numpy/numpy/commit/a496e11c52d4dc595cfa3110fe2e0debff566ebb Author: Ralf Gommers Date: 2015-12-31 (Thu, 31 Dec 2015) Changed paths: M doc/source/dev/development_environment.rst Log Message: ----------- DOC: add note not to run tests from repo root in devguide. Closes gh-6907. [ci skip] Commit: fd2b0d6c58356dd22b38d5e57e32f8107d9362a5 https://github.com/numpy/numpy/commit/fd2b0d6c58356dd22b38d5e57e32f8107d9362a5 Author: Charles Harris Date: 2015-12-31 (Thu, 31 Dec 2015) Changed paths: M doc/source/dev/development_environment.rst M doc/source/user/building.rst Log Message: ----------- Merge pull request #6914 from rgommers/fix-link DOC: fix broken link in user guide. Closes gh-6906. Compare: https://github.com/numpy/numpy/compare/4e669d99fdb0...fd2b0d6c5835