From noreply at github.com Tue Nov 1 05:39:13 2016 From: noreply at github.com (GitHub) Date: Tue, 01 Nov 2016 02:39:13 -0700 Subject: [Numpy-svn] [numpy/numpy] f685f1: ENH: Deprecation warnings for `/` integer division... Message-ID: <581862c1a498e_6473f833b5131348751f@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: f685f1a83de2d8fc1e0f48167a204248b6656a63 https://github.com/numpy/numpy/commit/f685f1a83de2d8fc1e0f48167a204248b6656a63 Author: saurabh Date: 2016-11-01 (Tue, 01 Nov 2016) Changed paths: M .travis.yml M doc/release/1.12.0-notes.rst M numpy/core/code_generators/generate_umath.py M numpy/core/src/umath/ufunc_type_resolution.c M numpy/core/src/umath/ufunc_type_resolution.h M numpy/core/tests/test_deprecations.py M numpy/core/tests/test_multiarray.py M numpy/core/tests/test_regression.py M numpy/core/tests/test_scalarmath.py M numpy/ma/tests/test_subclassing.py M numpy/testing/nosetester.py M tools/travis-test.sh Log Message: ----------- ENH: Deprecation warnings for `/` integer division when running python -3 When python is invoked with switch -3, it emits waring "classic int division" for strict integer divisions. The same behavior is now implemented to numpy with this fix Commit: 19fc7ad7f758a57d23c07830a3a8d054e7a11089 https://github.com/numpy/numpy/commit/19fc7ad7f758a57d23c07830a3a8d054e7a11089 Author: seberg Date: 2016-11-01 (Tue, 01 Nov 2016) Changed paths: M .travis.yml M doc/release/1.12.0-notes.rst M numpy/core/code_generators/generate_umath.py M numpy/core/src/umath/ufunc_type_resolution.c M numpy/core/src/umath/ufunc_type_resolution.h M numpy/core/tests/test_deprecations.py M numpy/core/tests/test_multiarray.py M numpy/core/tests/test_regression.py M numpy/core/tests/test_scalarmath.py M numpy/ma/tests/test_subclassing.py M numpy/testing/nosetester.py M tools/travis-test.sh Log Message: ----------- Merge pull request #8083 from njase/enh_7949 ENH: Deprecation warnings for `/` integer division when running python -3. Compare: https://github.com/numpy/numpy/compare/6ae842001332...19fc7ad7f758 From noreply at github.com Tue Nov 1 22:05:10 2016 From: noreply at github.com (GitHub) Date: Tue, 01 Nov 2016 19:05:10 -0700 Subject: [Numpy-svn] [numpy/numpy] 2a4dd9: BUG: Fix subarray format changed in #8160 Message-ID: <581949d6c79b5_52c63f996a81b134138560@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 2a4dd999c82276d00ef96d0d5839ff8b1f8a8871 https://github.com/numpy/numpy/commit/2a4dd999c82276d00ef96d0d5839ff8b1f8a8871 Author: Shota Kawabuchi Date: 2016-10-22 (Sat, 22 Oct 2016) Changed paths: M numpy/core/arrayprint.py M numpy/core/tests/test_arrayprint.py Log Message: ----------- BUG: Fix subarray format changed in #8160 Preserving structured array element format, this commit fixes subarray format changed in PR #8160. This commit also changes iterator for field name from dtype_.descr to dtype_.names (Related to #8174). Commit: a6c2184c0dbc70b9a57fce21e4f769d313021261 https://github.com/numpy/numpy/commit/a6c2184c0dbc70b9a57fce21e4f769d313021261 Author: Shota Kawabuchi Date: 2016-10-29 (Sat, 29 Oct 2016) Changed paths: M numpy/core/arrayprint.py M numpy/core/tests/test_arrayprint.py Log Message: ----------- BUG: Fix array2string for structured array scalars PR #8160 added format function for structured arrays. But it is not applied for structured array scalars. Closes #8172 Commit: e1326c31526a607cc981b309a3a092b1cbbc9b9c https://github.com/numpy/numpy/commit/e1326c31526a607cc981b309a3a092b1cbbc9b9c Author: Shota Kawabuchi Date: 2016-11-01 (Tue, 01 Nov 2016) Changed paths: M numpy/core/arrayprint.py Log Message: ----------- MAINT: Refactor numpy/core/arrayprint.py Related to PR #8200 Commit: 94b36b557ce7d88bbfe4091c59aa376764b7047d https://github.com/numpy/numpy/commit/94b36b557ce7d88bbfe4091c59aa376764b7047d Author: ahaldane Date: 2016-11-01 (Tue, 01 Nov 2016) Changed paths: M numpy/core/arrayprint.py M numpy/core/tests/test_arrayprint.py Log Message: ----------- Merge pull request #8200 from skwbc/structure_format BUG: Fix structured array format functions Compare: https://github.com/numpy/numpy/compare/19fc7ad7f758...94b36b557ce7 From noreply at github.com Thu Nov 3 21:00:47 2016 From: noreply at github.com (GitHub) Date: Thu, 03 Nov 2016 18:00:47 -0700 Subject: [Numpy-svn] [numpy/numpy] 18a907: DOC: Clarified when a copy is made in numpy.asarra... Message-ID: <581bddbff16c0_364d3f921859f13413553d@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 18a9075496407e162b1401817316932c0982ca4c https://github.com/numpy/numpy/commit/18a9075496407e162b1401817316932c0982ca4c Author: Michael Seifert Date: 2016-11-03 (Thu, 03 Nov 2016) Changed paths: M numpy/core/numeric.py Log Message: ----------- DOC: Clarified when a copy is made in numpy.asarray [skip ci] asarray does copy the input if the specified dtype and/or order differ from the input even if it is an ndarray. Commit: 7d3e4488afb7bcdfcf0b5ff52fb1cdcd7dc3748b https://github.com/numpy/numpy/commit/7d3e4488afb7bcdfcf0b5ff52fb1cdcd7dc3748b Author: Charles Harris Date: 2016-11-03 (Thu, 03 Nov 2016) Changed paths: M numpy/core/numeric.py Log Message: ----------- Merge pull request #8234 from MSeifert04/asarray_doc DOC: Clarified when a copy is made in numpy.asarray Compare: https://github.com/numpy/numpy/compare/94b36b557ce7...7d3e4488afb7 From noreply at github.com Thu Nov 3 21:33:09 2016 From: noreply at github.com (GitHub) Date: Thu, 03 Nov 2016 18:33:09 -0700 Subject: [Numpy-svn] [numpy/numpy] 530d67: [ENH]Make numpy.mean() do more precise computation... Message-ID: <581be555c6201_5d4c3f93a12bf13c10597b@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 530d67191287b8dc625bfc49664ad08b22e9e4d3 https://github.com/numpy/numpy/commit/530d67191287b8dc625bfc49664ad08b22e9e4d3 Author: Frederic Bastien Date: 2016-10-28 (Fri, 28 Oct 2016) Changed paths: M numpy/core/_methods.py M numpy/core/fromnumeric.py M numpy/core/tests/test_multiarray.py Log Message: ----------- [ENH]Make numpy.mean() do more precise computation without changing the output dtype that stay in float16. Commit: e1e76fefbd5a41ae14308a43245b4ecdf3099252 https://github.com/numpy/numpy/commit/e1e76fefbd5a41ae14308a43245b4ecdf3099252 Author: Frederic Bastien Date: 2016-10-31 (Mon, 31 Oct 2016) Changed paths: M numpy/core/_methods.py Log Message: ----------- Simplify and still reuse out with float16 inputs. Commit: f7378efe8884cf4d79cee1d880f1daf9420bd649 https://github.com/numpy/numpy/commit/f7378efe8884cf4d79cee1d880f1daf9420bd649 Author: Frederic Bastien Date: 2016-11-03 (Thu, 03 Nov 2016) Changed paths: M numpy/core/_methods.py M numpy/core/fromnumeric.py Log Message: ----------- Keep the subclass and update the docstring per the comment. Commit: af818b08edc30d04cb56de0429a35ca82458e326 https://github.com/numpy/numpy/commit/af818b08edc30d04cb56de0429a35ca82458e326 Author: Charles Harris Date: 2016-11-03 (Thu, 03 Nov 2016) Changed paths: M numpy/core/fromnumeric.py Log Message: ----------- DOC: Small fixup to the documentation. Commit: 6bb5a22ac873a76f4e80988469fe84c1067a7d58 https://github.com/numpy/numpy/commit/6bb5a22ac873a76f4e80988469fe84c1067a7d58 Author: Charles Harris Date: 2016-11-03 (Thu, 03 Nov 2016) Changed paths: M numpy/core/_methods.py M numpy/core/fromnumeric.py M numpy/core/tests/test_multiarray.py Log Message: ----------- Merge pull request #8222 from nouiz/mean_float16 ENH: Make numpy.mean() do more precise computation Compare: https://github.com/numpy/numpy/compare/7d3e4488afb7...6bb5a22ac873 From noreply at github.com Fri Nov 4 16:19:58 2016 From: noreply at github.com (GitHub) Date: Fri, 04 Nov 2016 13:19:58 -0700 Subject: [Numpy-svn] [numpy/numpy] 62c83d: DOC: Enhance description/usage for np.linalg.eig*h Message-ID: <581ced6e1f907_4f303f7f7d1af13075391@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 62c83dd7a69ce72d566db5e0b45139420b856891 https://github.com/numpy/numpy/commit/62c83dd7a69ce72d566db5e0b45139420b856891 Author: Stuart Archibald Date: 2016-09-29 (Thu, 29 Sep 2016) Changed paths: M numpy/linalg/linalg.py Log Message: ----------- DOC: Enhance description/usage for np.linalg.eig*h Proposed documentation enhancement to the `np.linalg.eig*h` routines. The current documentation does not reflect the nature of the underlying LAPACK routines and the way in which they interpet the input. This documentation and examples are with view of adding clarity to what is actually performed. Commit: fc6ba159a26836fe130b385ce0ceb9b9b939475d https://github.com/numpy/numpy/commit/fc6ba159a26836fe130b385ce0ceb9b9b939475d Author: Charles Harris Date: 2016-11-04 (Fri, 04 Nov 2016) Changed paths: M numpy/linalg/linalg.py Log Message: ----------- DOC: Remove "deprecated" from eigvalsh UPLO. The UPLO parameter of eigvalsh was marked as deprecated, apparently in anticipation of convergence with the scipy version which uses a `lower` boolean parameter. There is no deprecation in the code, nor a lower parameter, so remove the deprecation. [ci skip] Commit: 4d300ff74dfa9bf710cef936e6570c4dce8f7238 https://github.com/numpy/numpy/commit/4d300ff74dfa9bf710cef936e6570c4dce8f7238 Author: Charles Harris Date: 2016-11-04 (Fri, 04 Nov 2016) Changed paths: M numpy/linalg/linalg.py Log Message: ----------- Merge pull request #8098 from stuartarchibald/wip/np_la_eigh_doc_enhance DOC: Enhance description/usage for np.linalg.eig*h Compare: https://github.com/numpy/numpy/compare/6bb5a22ac873...4d300ff74dfa From noreply at github.com Fri Nov 4 20:09:14 2016 From: noreply at github.com (GitHub) Date: Fri, 04 Nov 2016 17:09:14 -0700 Subject: [Numpy-svn] [numpy/numpy] 105592: DOC: Fixups for quickstart.rst. Message-ID: <581d232a8cc19_46233fbbfcf4714c5353a@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 105592f9c7e94c9f65ccb8d130e58b40686e18d1 https://github.com/numpy/numpy/commit/105592f9c7e94c9f65ccb8d130e58b40686e18d1 Author: Charles Harris Date: 2016-11-04 (Fri, 04 Nov 2016) Changed paths: M doc/source/user/quickstart.rst Log Message: ----------- DOC: Fixups for quickstart.rst. Corrections to #8001. - Correct markup for code sections. - Correct link to structured arrays. Closes #7881. [ci skip] Commit: 93c098a582d1f562a9601c89ac30bb978ccb2eed https://github.com/numpy/numpy/commit/93c098a582d1f562a9601c89ac30bb978ccb2eed Author: Charles Harris Date: 2016-11-04 (Fri, 04 Nov 2016) Changed paths: M doc/source/user/c-info.python-as-glue.rst Log Message: ----------- DOC: Fix code example in c-info.python-as-glue.rst. Corrections to #8023. - Fix index types to ssize_t. - Clean up C code style. Closes #7701. [ci skip] Commit: e88508527fe748d50f30b96a59701a14c06de71d https://github.com/numpy/numpy/commit/e88508527fe748d50f30b96a59701a14c06de71d Author: Charles Harris Date: 2016-11-04 (Fri, 04 Nov 2016) Changed paths: M numpy/fft/fftpack.py Log Message: ----------- DOC: Correct documentation of hfft/ihfft. Corrections to #7492. Correct the examples in the notes specifying the output length for the hfft. Also clean up the documentation a bit. [ci skip] Commit: 740bca9e788807be6032fc19deeb0ab37a612a49 https://github.com/numpy/numpy/commit/740bca9e788807be6032fc19deeb0ab37a612a49 Author: Charles Harris Date: 2016-11-04 (Fri, 04 Nov 2016) Changed paths: M doc/source/user/c-info.python-as-glue.rst M doc/source/user/quickstart.rst M numpy/fft/fftpack.py Log Message: ----------- Merge pull request #8236 from charris/fix-documentation-prs DOC: Fix documentation pull requests. Compare: https://github.com/numpy/numpy/compare/4d300ff74dfa...740bca9e7888 From noreply at github.com Fri Nov 4 21:58:40 2016 From: noreply at github.com (GitHub) Date: Fri, 04 Nov 2016 18:58:40 -0700 Subject: [Numpy-svn] [numpy/numpy] 704bf3: MAINT: Update pavement.py Message-ID: <581d3cd0a25cb_54d93f932028f13465120@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 704bf37f1748d905e2eacdbe8ddbe66cddcc8d35 https://github.com/numpy/numpy/commit/704bf37f1748d905e2eacdbe8ddbe66cddcc8d35 Author: Charles Harris Date: 2016-11-04 (Fri, 04 Nov 2016) Changed paths: M pavement.py Log Message: ----------- MAINT: Update pavement.py - Add README signing from scipy. - Change NOTES.txt to README. [ci skip] Commit: 0662c030ae7d3412abf66806a5aeeeaafc6e78c4 https://github.com/numpy/numpy/commit/0662c030ae7d3412abf66806a5aeeeaafc6e78c4 Author: Ralf Gommers Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M pavement.py Log Message: ----------- Merge pull request #8238 from charris/update-pavement MAINT: Update pavement.py Compare: https://github.com/numpy/numpy/compare/740bca9e7888...0662c030ae7d From noreply at github.com Sat Nov 5 12:19:53 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 09:19:53 -0700 Subject: [Numpy-svn] [numpy/numpy] a000f9: ENH: Improve announce tool. Message-ID: <581e06a976c61_4cf43f964df151304176c@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: a000f9bc517a7334dd3f3fce5ef3c593910d42eb https://github.com/numpy/numpy/commit/a000f9bc517a7334dd3f3fce5ef3c593910d42eb Author: Charles Harris Date: 2016-11-04 (Fri, 04 Nov 2016) Changed paths: M tools/announce.py Log Message: ----------- ENH: Improve announce tool. - Add ability to get pull request number from Homu auto merges. - Print number of merged pull requests. [ci skip] Commit: 48b59875d2dce31aefb1ce4940ea3848d17108b8 https://github.com/numpy/numpy/commit/48b59875d2dce31aefb1ce4940ea3848d17108b8 Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M tools/announce.py Log Message: ----------- Merge pull request #8239 from charris/update-announce ENH: Improve announce tool. Compare: https://github.com/numpy/numpy/compare/0662c030ae7d...48b59875d2dc From noreply at github.com Sat Nov 5 12:20:47 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 09:20:47 -0700 Subject: [Numpy-svn] [numpy/numpy] 29164f: MAINT: Update .mailmap Message-ID: <581e06df24d96_47a63f849b4b1130230d0@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 29164faee3fc91d3c769336e451710289f89b890 https://github.com/numpy/numpy/commit/29164faee3fc91d3c769336e451710289f89b890 Author: Charles Harris Date: 2016-11-03 (Thu, 03 Nov 2016) Changed paths: M .mailmap Log Message: ----------- MAINT: Update .mailmap Contributor nevimov did not want his full name used. [ci skip] Commit: 9589a5afadf1adb766179d6f5d2e94ec742fe696 https://github.com/numpy/numpy/commit/9589a5afadf1adb766179d6f5d2e94ec742fe696 Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M .mailmap Log Message: ----------- Merge pull request #8182 from charris/update-mailmap MAINT: Update .mailmap Compare: https://github.com/numpy/numpy/compare/48b59875d2dc...9589a5afadf1 From noreply at github.com Sat Nov 5 12:23:15 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 09:23:15 -0700 Subject: [Numpy-svn] [numpy/numpy] 9451fa: ENH: Add a float_power function with at least floa... Message-ID: <581e07733e3d3_4f333fef5f9b9130928bc@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 9451faa445571cf1839e415bb419afa18c0e7ed9 https://github.com/numpy/numpy/commit/9451faa445571cf1839e415bb419afa18c0e7ed9 Author: Charles Harris Date: 2016-11-02 (Wed, 02 Nov 2016) Changed paths: M numpy/core/code_generators/generate_umath.py M numpy/core/code_generators/ufunc_docstrings.py M numpy/core/tests/test_umath.py Log Message: ----------- ENH: Add a float_power function with at least float64 precision. The new float_power function converts integers and inexact type to inexact types of minimum precision float64 before computing the power. The intent is one should not need to worry about overflow or negative powers when computing a power when type preservation is not a factor. It also implements the popular proposal on the numpy mailing list that the `**` operator should always return at least double precision. Commit: af32cce15d670ff479c46b8580116619e29261ca https://github.com/numpy/numpy/commit/af32cce15d670ff479c46b8580116619e29261ca Author: Charles Harris Date: 2016-11-02 (Wed, 02 Nov 2016) Changed paths: M doc/release/1.12.0-notes.rst Log Message: ----------- DOC: Mention the fpower function in the 1.12.0 release notes. [ci skip] Commit: 62046aa1f3b4666519cbd7d5481dae836e34bbd3 https://github.com/numpy/numpy/commit/62046aa1f3b4666519cbd7d5481dae836e34bbd3 Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M doc/release/1.12.0-notes.rst M numpy/core/code_generators/generate_umath.py M numpy/core/code_generators/ufunc_docstrings.py M numpy/core/tests/test_umath.py Log Message: ----------- Merge pull request #8190 from charris/add-fpower-ufunc ENH: Add a float_power function with at least float64 precision. Compare: https://github.com/numpy/numpy/compare/9589a5afadf1...62046aa1f3b4 From noreply at github.com Sat Nov 5 12:29:53 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 09:29:53 -0700 Subject: [Numpy-svn] [numpy/numpy] 3ab221: ENH: Refactor numpy ** operators for numpy scalar ... Message-ID: <581e090159c6b_3dbd3fca8842f13444361@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 3ab221383bb35fe15b333f75e002afae8cddc931 https://github.com/numpy/numpy/commit/3ab221383bb35fe15b333f75e002afae8cddc931 Author: Charles Harris Date: 2016-11-01 (Tue, 01 Nov 2016) Changed paths: M numpy/core/src/umath/scalarmath.c.src Log Message: ----------- ENH: Refactor numpy ** operators for numpy scalar integer powers. This change is the upshot of discussion on the numpy mailing list where it was decided that a numpy scalar integer raised to a negative integer power should raise a ValueError, as do Numpy arrays. In particular, we want numpy scalars and numpy 0-d arrays to have similar behavior. Previously zero was returned for this case. Commit: 7e31e32f093887d5fd99f719a06bc2b5ed7dc9c8 https://github.com/numpy/numpy/commit/7e31e32f093887d5fd99f719a06bc2b5ed7dc9c8 Author: Charles Harris Date: 2016-11-01 (Tue, 01 Nov 2016) Changed paths: M doc/release/1.12.0-notes.rst Log Message: ----------- DOC: Note change to scalar integer powers in 1.12.0 release notes. [ci skip] Commit: 2272c32d90026cc07af9c8bca3c2a33feb1e788a https://github.com/numpy/numpy/commit/2272c32d90026cc07af9c8bca3c2a33feb1e788a Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M doc/release/1.12.0-notes.rst M numpy/core/src/umath/scalarmath.c.src Log Message: ----------- Merge pull request #8231 from charris/integer-to-neg-integer-power ENH: Refactor numpy ** operators for numpy scalar integer powers Compare: https://github.com/numpy/numpy/compare/62046aa1f3b4...2272c32d9002 From noreply at github.com Sat Nov 5 12:58:14 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 09:58:14 -0700 Subject: [Numpy-svn] [numpy/numpy] f5bb42: BUG: Better check for invalid bounds in np.random.... Message-ID: <581e0fa6d3de5_54d93f932028f1346799c@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: f5bb42f0b02fa954f03bf4d96801877a4837c8cb https://github.com/numpy/numpy/commit/f5bb42f0b02fa954f03bf4d96801877a4837c8cb Author: Alistair Muldal Date: 2016-11-02 (Wed, 02 Nov 2016) Changed paths: M numpy/random/mtrand/mtrand.pyx M numpy/random/tests/test_random.py Log Message: ----------- BUG: Better check for invalid bounds in np.random.uniform. Also check for invalid bounds when low= and high= are arraylike rather than scalar (closes #8226) Commit: 8c49b92d9b472f1b476b360951b1ac9066f69b4b https://github.com/numpy/numpy/commit/8c49b92d9b472f1b476b360951b1ac9066f69b4b Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M numpy/random/mtrand/mtrand.pyx M numpy/random/tests/test_random.py Log Message: ----------- Merge pull request #8227 from alimuldal/uniform_inf_check BUG: Better check for invalid bounds in np.random.uniform. Compare: https://github.com/numpy/numpy/compare/2272c32d9002...8c49b92d9b47 From noreply at github.com Sat Nov 5 16:09:55 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 13:09:55 -0700 Subject: [Numpy-svn] [numpy/numpy] 28e390: REL: Updates for C-ABI and C-API. Message-ID: <581e3c93beb36_3b693ff69f7651309529a@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 28e39059622fdfa4e5d454564afa77fc9468768b https://github.com/numpy/numpy/commit/28e39059622fdfa4e5d454564afa77fc9468768b Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M numpy/core/code_generators/cversions.txt M numpy/core/include/numpy/numpyconfig.h M numpy/core/setup_common.py Log Message: ----------- REL: Updates for C-ABI and C-API. No changes in the interfaces but some housekeeping is needed. - Add comments to cversions.txt and setup_common.py - Add NPY_1_12_API_VERSION to numpyconfig.h [ci skip] Commit: c2503ed68841d83f907125e18d01000580963a33 https://github.com/numpy/numpy/commit/c2503ed68841d83f907125e18d01000580963a33 Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M doc/release/1.12.0-notes.rst Log Message: ----------- DOC: Cleanup 1.12.0 release notes. Fix spelling, arrangement, markup, etc. This is more a first pass than a finishing touchup. [ci skip] Commit: 1718ee8f8080c474c8e2167726c8aa542761135b https://github.com/numpy/numpy/commit/1718ee8f8080c474c8e2167726c8aa542761135b Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M doc/release/1.12.0-notes.rst M numpy/core/code_generators/cversions.txt M numpy/core/include/numpy/numpyconfig.h M numpy/core/setup_common.py Log Message: ----------- Merge pull request #8240 from charris/prepare-for-1.12-branch REL: Prepare for 1.12.x branch Compare: https://github.com/numpy/numpy/compare/8c49b92d9b47...1718ee8f8080 From noreply at github.com Sat Nov 5 16:20:12 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 13:20:12 -0700 Subject: [Numpy-svn] [numpy/numpy] 9a8504: MAINT: Update pavement.py and setup.py for 1.12.x. Message-ID: <581e3efcdff7b_2f6d3ff2246191348113b@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.12.x Home: https://github.com/numpy/numpy Commit: 9a850406cd52b91a674779cbec57d0e032f277af https://github.com/numpy/numpy/commit/9a850406cd52b91a674779cbec57d0e032f277af Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M pavement.py M setup.py Log Message: ----------- MAINT: Update pavement.py and setup.py for 1.12.x. From noreply at github.com Sat Nov 5 17:38:12 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 14:38:12 -0700 Subject: [Numpy-svn] [numpy/numpy] 5da51c: BUG: Update operator `**` tests for new behavior. Message-ID: <581e51446421c_3eab3f9fbaf0913471796@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 5da51cba3367432cdb6ae3ee3834509c306b737d https://github.com/numpy/numpy/commit/5da51cba3367432cdb6ae3ee3834509c306b737d Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M numpy/core/tests/test_scalarmath.py Log Message: ----------- BUG: Update operator `**` tests for new behavior. I forgot to keep the test fixes when the scalar `**` operator was refactored the second time. Commit: e6ec66d78a698b2b5cc025580906acde5783c122 https://github.com/numpy/numpy/commit/e6ec66d78a698b2b5cc025580906acde5783c122 Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M numpy/core/tests/test_scalarmath.py Log Message: ----------- Merge pull request #8242 from charris/fix-power-test BUG: Update operator `**` tests for new behavior. Compare: https://github.com/numpy/numpy/compare/1718ee8f8080...e6ec66d78a69 From noreply at github.com Sat Nov 5 17:45:39 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 14:45:39 -0700 Subject: [Numpy-svn] [numpy/numpy] 5da51c: BUG: Update operator `**` tests for new behavior. Message-ID: <581e5303a424d_282053fd29596d1406135@hookshot-fe-6dbb0c4.cp1-iad.github.net.mail> Branch: refs/heads/maintenance/1.12.x Home: https://github.com/numpy/numpy Commit: 5da51cba3367432cdb6ae3ee3834509c306b737d https://github.com/numpy/numpy/commit/5da51cba3367432cdb6ae3ee3834509c306b737d Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M numpy/core/tests/test_scalarmath.py Log Message: ----------- BUG: Update operator `**` tests for new behavior. I forgot to keep the test fixes when the scalar `**` operator was refactored the second time. Commit: 2f0edf38b881b5d8b8ce59b92922cef235447370 https://github.com/numpy/numpy/commit/2f0edf38b881b5d8b8ce59b92922cef235447370 Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M numpy/core/tests/test_scalarmath.py Log Message: ----------- Merge pull request #8243 from charris/fix-power-test BUG: Update operator `**` tests for new behavior. Compare: https://github.com/numpy/numpy/compare/9a850406cd52...2f0edf38b881 From noreply at github.com Sat Nov 5 18:41:29 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 15:41:29 -0700 Subject: [Numpy-svn] [numpy/numpy] 74dbda: DOC: fix typos in arrayprint docstrings. Message-ID: <581e601946fb7_51cf3fe8f523b130299f1@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 74dbda5345ee426d91472f91975993f760c224ec https://github.com/numpy/numpy/commit/74dbda5345ee426d91472f91975993f760c224ec Author: Ralf Gommers Date: 2016-11-06 (Sun, 06 Nov 2016) Changed paths: M numpy/core/arrayprint.py Log Message: ----------- DOC: fix typos in arrayprint docstrings. Addresses part of issue reported in gh-8224. Commit: 6cf3406df605f962632f6dc292a67cfde91ce9bc https://github.com/numpy/numpy/commit/6cf3406df605f962632f6dc292a67cfde91ce9bc Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M numpy/core/arrayprint.py Log Message: ----------- Merge pull request #8244 from rgommers/arrayprint DOC: fix typos in arrayprint docstrings. Compare: https://github.com/numpy/numpy/compare/e6ec66d78a69...6cf3406df605 From noreply at github.com Sat Nov 5 18:54:42 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 15:54:42 -0700 Subject: [Numpy-svn] [numpy/numpy] 674e61: DOC: Add 1.13.0 notes. Message-ID: <581e633256000_4f493fd2da1af134243b@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 674e61fbb359dea2f289d0621884a299774ef9ca https://github.com/numpy/numpy/commit/674e61fbb359dea2f289d0621884a299774ef9ca Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: A doc/release/1.13.0-notes.rst M doc/source/release.rst Log Message: ----------- DOC: Add 1.13.0 notes. [ci skip] Commit: b33a5ee781bb4a775e5ccef1fdf88b61339becba https://github.com/numpy/numpy/commit/b33a5ee781bb4a775e5ccef1fdf88b61339becba Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M pavement.py M setup.py Log Message: ----------- MAINT: Update pavement.py and setup.py for numpy 1.13.0. Commit: 241e6a698e35060ab2980bc18976e7aef9bec912 https://github.com/numpy/numpy/commit/241e6a698e35060ab2980bc18976e7aef9bec912 Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: A doc/release/1.13.0-notes.rst M doc/source/release.rst M pavement.py M setup.py Log Message: ----------- Merge pull request #8241 from charris/prepare-1.13 MAINT: Prepare for 1.13.0 after 1.12.x branch Compare: https://github.com/numpy/numpy/compare/6cf3406df605...241e6a698e35 From noreply at github.com Sat Nov 5 21:49:00 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 18:49:00 -0700 Subject: [Numpy-svn] [numpy/numpy] 7902e6: REL: Reset strides for RELAXED_STRIDE_CHECKING for... Message-ID: <581e8c0cc938b_58f73fe39516b1344495d@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.12.x Home: https://github.com/numpy/numpy Commit: 7902e652fe50cc8a75c86531cfa35c3ef8b6caab https://github.com/numpy/numpy/commit/7902e652fe50cc8a75c86531cfa35c3ef8b6caab Author: Charles Harris Date: 2016-01-21 (Thu, 21 Jan 2016) Changed paths: M numpy/core/src/multiarray/ctors.c Log Message: ----------- REL: Reset strides for RELAXED_STRIDE_CHECKING for 1.12 releases. Strides in some cases are set to NPY_MAX_INTP to smoke out illegal usage in packages that use Numpy. We don't want that for the releases, so fix it. Commit: 790c7f7d20cdab64123906d7ecab7f7bdfa951f6 https://github.com/numpy/numpy/commit/790c7f7d20cdab64123906d7ecab7f7bdfa951f6 Author: Charles Harris Date: 2016-11-05 (Sat, 05 Nov 2016) Changed paths: M numpy/core/src/multiarray/ctors.c Log Message: ----------- Merge pull request #8246 from charris/make-bad-strides-reasonable REL: Reset strides for RELAXED_STRIDE_CHECKING for 1.12 releases. Compare: https://github.com/numpy/numpy/compare/2f0edf38b881...790c7f7d20cd From noreply at github.com Sun Nov 6 00:38:08 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 21:38:08 -0700 Subject: [Numpy-svn] [numpy/numpy] 4f8e93: Let linspace accept input that has an array_interf... Message-ID: <581eb3b0945ee_36b63fdbbb45712c877f1@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 4f8e93a3b26f15bb96d86ee05d672b51cda1e935 https://github.com/numpy/numpy/commit/4f8e93a3b26f15bb96d86ee05d672b51cda1e935 Author: Fran?ois Bissey Date: 2015-11-10 (Tue, 10 Nov 2015) Changed paths: M numpy/core/function_base.py Log Message: ----------- Let linspace accept input that has an array_interface but is not otherwise a numpy or python type. Commit: 072e8a5572f0104c4b28828cb1404bed8682e951 https://github.com/numpy/numpy/commit/072e8a5572f0104c4b28828cb1404bed8682e951 Author: Fran?ois Bissey Date: 2015-11-11 (Wed, 11 Nov 2015) Changed paths: M numpy/core/function_base.py Log Message: ----------- Use asanyarray instead of asarray Commit: 9266c2dfb97248dd20719c12ff9a009a71d941aa https://github.com/numpy/numpy/commit/9266c2dfb97248dd20719c12ff9a009a71d941aa Author: Fran?ois Bissey Date: 2016-08-23 (Tue, 23 Aug 2016) Changed paths: M .gitignore M .mailmap M .travis.yml A INSTALL.rst.txt R INSTALL.txt M LICENSE.txt M MANIFEST.in A README.md R README.txt A appveyor.yml M benchmarks/benchmarks/bench_app.py M benchmarks/benchmarks/bench_core.py M benchmarks/benchmarks/bench_function_base.py M benchmarks/benchmarks/bench_indexing.py M benchmarks/benchmarks/bench_io.py M benchmarks/benchmarks/bench_linalg.py M benchmarks/benchmarks/bench_random.py M benchmarks/benchmarks/bench_reduce.py M benchmarks/benchmarks/bench_ufunc.py M benchmarks/benchmarks/common.py M doc/CAPI.rst.txt M doc/DISTUTILS.rst.txt M doc/HOWTO_BUILD_DOCS.rst.txt M doc/HOWTO_DOCUMENT.rst.txt M doc/HOWTO_RELEASE.rst.txt M doc/Makefile M doc/example.py M doc/f2py/index.html M doc/neps/missing-data.rst M doc/neps/npy-format.rst M doc/neps/return-of-revenge-of-matmul-pep.rst M doc/newdtype_example/floatint.c M doc/newdtype_example/setup.py M doc/release/1.10.0-notes.rst M doc/release/1.10.2-notes.rst A doc/release/1.10.3-notes.rst A doc/release/1.10.4-notes.rst M doc/release/1.11.0-notes.rst A doc/release/1.11.1-notes.rst A doc/release/1.12.0-notes.rst A doc/source/_static/.gitignore M doc/source/dev/development_environment.rst M doc/source/dev/gitwash/development_workflow.rst M doc/source/dev/governance/index.rst M doc/source/reference/arrays.classes.rst M doc/source/reference/arrays.datetime.rst M doc/source/reference/arrays.indexing.rst M doc/source/reference/arrays.interface.rst M doc/source/reference/arrays.ndarray.rst M doc/source/reference/c-api.array.rst M doc/source/reference/c-api.iterator.rst M doc/source/reference/c-api.types-and-structures.rst M doc/source/reference/distutils.rst M doc/source/reference/routines.array-creation.rst M doc/source/reference/routines.array-manipulation.rst M doc/source/reference/routines.math.rst M doc/source/reference/routines.other.rst M doc/source/reference/routines.polynomials.polynomial.rst M doc/source/reference/swig.interface-file.rst M doc/source/reference/ufuncs.rst M doc/source/release.rst M doc/source/user/basics.io.genfromtxt.rst M doc/source/user/building.rst M doc/source/user/c-info.ufunc-tutorial.rst M doc/source/user/install.rst M doc/source/user/numpy-for-matlab-users.rst M doc/source/user/quickstart.rst M doc/sphinxext M numpy/__init__.py M numpy/_build_utils/README M numpy/_build_utils/apple_accelerate.py M numpy/_build_utils/src/apple_sgemv_fix.c A numpy/_distributor_init.py A numpy/_globals.py M numpy/_import_tools.py M numpy/add_newdocs.py M numpy/compat/_inspect.py M numpy/compat/py3k.py M numpy/compat/tests/test_compat.py M numpy/core/__init__.py M numpy/core/_internal.py M numpy/core/arrayprint.py M numpy/core/code_generators/cversions.txt M numpy/core/code_generators/generate_numpy_api.py M numpy/core/code_generators/generate_umath.py M numpy/core/code_generators/ufunc_docstrings.py M numpy/core/fromnumeric.py M numpy/core/function_base.py M numpy/core/getlimits.py M numpy/core/include/numpy/_numpyconfig.h.in M numpy/core/include/numpy/halffloat.h M numpy/core/include/numpy/ndarrayobject.h M numpy/core/include/numpy/ndarraytypes.h M numpy/core/include/numpy/npy_3kcompat.h M numpy/core/include/numpy/npy_common.h M numpy/core/include/numpy/npy_endian.h M numpy/core/include/numpy/npy_math.h M numpy/core/include/numpy/numpyconfig.h M numpy/core/include/numpy/ufuncobject.h M numpy/core/info.py M numpy/core/memmap.py M numpy/core/numeric.py M numpy/core/numerictypes.py M numpy/core/records.py M numpy/core/setup.py M numpy/core/setup_common.py M numpy/core/shape_base.py M numpy/core/src/multiarray/_datetime.h M numpy/core/src/multiarray/alloc.c M numpy/core/src/multiarray/array_assign_array.c M numpy/core/src/multiarray/arrayobject.c M numpy/core/src/multiarray/arraytypes.c.src M numpy/core/src/multiarray/buffer.c M numpy/core/src/multiarray/calculation.c M numpy/core/src/multiarray/cblasfuncs.c M numpy/core/src/multiarray/cblasfuncs.h M numpy/core/src/multiarray/common.c M numpy/core/src/multiarray/compiled_base.c M numpy/core/src/multiarray/compiled_base.h M numpy/core/src/multiarray/conversion_utils.c M numpy/core/src/multiarray/convert.c M numpy/core/src/multiarray/ctors.c M numpy/core/src/multiarray/ctors.h M numpy/core/src/multiarray/datetime.c M numpy/core/src/multiarray/datetime_busday.c M numpy/core/src/multiarray/datetime_busdaycal.c M numpy/core/src/multiarray/datetime_busdaycal.h M numpy/core/src/multiarray/datetime_strings.c M numpy/core/src/multiarray/datetime_strings.h M numpy/core/src/multiarray/descriptor.c M numpy/core/src/multiarray/dtype_transfer.c M numpy/core/src/multiarray/einsum.c.src M numpy/core/src/multiarray/getset.c M numpy/core/src/multiarray/item_selection.c M numpy/core/src/multiarray/iterators.c M numpy/core/src/multiarray/iterators.h M numpy/core/src/multiarray/lowlevel_strided_loops.c.src M numpy/core/src/multiarray/mapping.c M numpy/core/src/multiarray/methods.c M numpy/core/src/multiarray/multiarray_tests.c.src M numpy/core/src/multiarray/multiarraymodule.c M numpy/core/src/multiarray/nditer_api.c M numpy/core/src/multiarray/nditer_constr.c M numpy/core/src/multiarray/nditer_pywrap.c M numpy/core/src/multiarray/nditer_templ.c.src M numpy/core/src/multiarray/numpyos.c M numpy/core/src/multiarray/numpyos.h M numpy/core/src/multiarray/scalarapi.c M numpy/core/src/multiarray/scalartypes.c.src M numpy/core/src/multiarray/shape.c M numpy/core/src/multiarray/usertypes.c M numpy/core/src/npymath/halffloat.c M numpy/core/src/npymath/npy_math.c.src M numpy/core/src/npymath/npy_math_complex.c.src M numpy/core/src/npysort/quicksort.c.src M numpy/core/src/npysort/selection.c.src M numpy/core/src/private/lowlevel_strided_loops.h M numpy/core/src/private/mem_overlap.c M numpy/core/src/private/npy_config.h M numpy/core/src/private/npy_sort.h M numpy/core/src/private/templ_common.h.src M numpy/core/src/private/ufunc_override.h M numpy/core/src/umath/funcs.inc.src M numpy/core/src/umath/loops.c.src M numpy/core/src/umath/reduction.c M numpy/core/src/umath/scalarmath.c.src M numpy/core/src/umath/simd.inc.src M numpy/core/src/umath/ufunc_object.c M numpy/core/tests/test_api.py 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_dtype.py M numpy/core/tests/test_einsum.py M numpy/core/tests/test_function_base.py M numpy/core/tests/test_getlimits.py M numpy/core/tests/test_indexing.py M numpy/core/tests/test_item_selection.py M numpy/core/tests/test_longdouble.py M numpy/core/tests/test_machar.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_nditer.py M numpy/core/tests/test_numeric.py M numpy/core/tests/test_print.py M numpy/core/tests/test_records.py M numpy/core/tests/test_regression.py M numpy/core/tests/test_scalarinherit.py M numpy/core/tests/test_scalarmath.py M numpy/core/tests/test_shape_base.py M numpy/core/tests/test_ufunc.py M numpy/core/tests/test_umath.py M numpy/core/tests/test_unicode.py M numpy/ctypeslib.py M numpy/distutils/__init__.py M numpy/distutils/ccompiler.py M numpy/distutils/command/build_src.py M numpy/distutils/command/config.py M numpy/distutils/command/egg_info.py M numpy/distutils/conv_template.py M numpy/distutils/exec_command.py M numpy/distutils/extension.py M numpy/distutils/fcompiler/__init__.py M numpy/distutils/fcompiler/gnu.py M numpy/distutils/fcompiler/intel.py M numpy/distutils/from_template.py M numpy/distutils/intelccompiler.py M numpy/distutils/mingw32ccompiler.py M numpy/distutils/misc_util.py M numpy/distutils/msvc9compiler.py M numpy/distutils/msvccompiler.py M numpy/distutils/npy_pkg_config.py M numpy/distutils/system_info.py R numpy/distutils/tests/f2py_ext/__init__.py R numpy/distutils/tests/f2py_ext/setup.py R numpy/distutils/tests/f2py_ext/src/fib1.f R numpy/distutils/tests/f2py_ext/src/fib2.pyf R numpy/distutils/tests/f2py_ext/tests/test_fib2.py R numpy/distutils/tests/f2py_f90_ext/__init__.py R numpy/distutils/tests/f2py_f90_ext/include/body.f90 R numpy/distutils/tests/f2py_f90_ext/setup.py R numpy/distutils/tests/f2py_f90_ext/src/foo_free.f90 R numpy/distutils/tests/f2py_f90_ext/tests/test_foo.py R numpy/distutils/tests/gen_ext/__init__.py R numpy/distutils/tests/gen_ext/setup.py R numpy/distutils/tests/gen_ext/tests/test_fib3.py R numpy/distutils/tests/pyrex_ext/__init__.py R numpy/distutils/tests/pyrex_ext/primes.pyx R numpy/distutils/tests/pyrex_ext/setup.py R numpy/distutils/tests/pyrex_ext/tests/test_primes.py R numpy/distutils/tests/setup.py R numpy/distutils/tests/swig_ext/__init__.py R numpy/distutils/tests/swig_ext/setup.py R numpy/distutils/tests/swig_ext/src/example.c R numpy/distutils/tests/swig_ext/src/example.i R numpy/distutils/tests/swig_ext/src/zoo.cc R numpy/distutils/tests/swig_ext/src/zoo.h R numpy/distutils/tests/swig_ext/src/zoo.i R numpy/distutils/tests/swig_ext/tests/test_example.py R numpy/distutils/tests/swig_ext/tests/test_example2.py M numpy/distutils/tests/test_misc_util.py M numpy/distutils/tests/test_npy_pkg_config.py M numpy/distutils/tests/test_system_info.py M numpy/doc/byteswapping.py M numpy/doc/glossary.py M numpy/doc/indexing.py M numpy/doc/internals.py M numpy/doc/misc.py M numpy/doc/structured_arrays.py M numpy/doc/subclassing.py M numpy/f2py/__init__.py M numpy/f2py/__main__.py M numpy/f2py/auxfuncs.py M numpy/f2py/capi_maps.py M numpy/f2py/crackfortran.py M numpy/f2py/f90mod_rules.py M numpy/f2py/rules.py M numpy/f2py/tests/test_array_from_pyobj.py M numpy/f2py/tests/util.py M numpy/fft/__init__.py M numpy/fft/fftpack.py M numpy/fft/helper.py M numpy/fft/tests/test_helper.py M numpy/lib/__init__.py M numpy/lib/_datasource.py M numpy/lib/arraypad.py M numpy/lib/arrayterator.py M numpy/lib/financial.py M numpy/lib/format.py M numpy/lib/function_base.py M numpy/lib/index_tricks.py M numpy/lib/nanfunctions.py M numpy/lib/npyio.py M numpy/lib/polynomial.py M numpy/lib/shape_base.py M numpy/lib/stride_tricks.py M numpy/lib/tests/test__datasource.py M numpy/lib/tests/test_arraypad.py M numpy/lib/tests/test_financial.py M numpy/lib/tests/test_format.py M numpy/lib/tests/test_function_base.py M numpy/lib/tests/test_index_tricks.py M numpy/lib/tests/test_io.py M numpy/lib/tests/test_nanfunctions.py M numpy/lib/tests/test_packbits.py M numpy/lib/tests/test_polynomial.py M numpy/lib/tests/test_regression.py M numpy/lib/tests/test_shape_base.py M numpy/lib/tests/test_stride_tricks.py M numpy/lib/tests/test_twodim_base.py M numpy/lib/tests/test_type_check.py M numpy/lib/twodim_base.py M numpy/lib/type_check.py M numpy/lib/user_array.py M numpy/lib/utils.py M numpy/linalg/__init__.py M numpy/linalg/lapack_lite/README M numpy/linalg/lapack_lite/clapack_scrub.py M numpy/linalg/lapack_lite/dlapack_lite.c M numpy/linalg/lapack_lite/zlapack_lite.c M numpy/linalg/linalg.py M numpy/linalg/tests/test_deprecations.py M numpy/linalg/tests/test_linalg.py M numpy/linalg/tests/test_regression.py M numpy/ma/README.txt M numpy/ma/__init__.py M numpy/ma/core.py M numpy/ma/extras.py M numpy/ma/mrecords.py M numpy/ma/tests/test_core.py M numpy/ma/tests/test_extras.py M numpy/ma/tests/test_mrecords.py M numpy/ma/tests/test_old_ma.py M numpy/ma/tests/test_subclassing.py M numpy/matrixlib/__init__.py M numpy/matrixlib/defmatrix.py M numpy/polynomial/__init__.py M numpy/polynomial/_polybase.py M numpy/polynomial/chebyshev.py M numpy/polynomial/hermite.py M numpy/polynomial/hermite_e.py M numpy/polynomial/laguerre.py M numpy/polynomial/legendre.py M numpy/polynomial/polynomial.py M numpy/polynomial/polyutils.py M numpy/polynomial/tests/test_chebyshev.py M numpy/polynomial/tests/test_classes.py M numpy/polynomial/tests/test_hermite.py M numpy/polynomial/tests/test_hermite_e.py M numpy/polynomial/tests/test_laguerre.py M numpy/polynomial/tests/test_legendre.py M numpy/polynomial/tests/test_polynomial.py M numpy/random/__init__.py M numpy/random/mtrand/Python.pxi M numpy/random/mtrand/distributions.c M numpy/random/mtrand/mtrand.pyx M numpy/random/mtrand/numpy.pxd M numpy/random/mtrand/randomkit.c M numpy/random/mtrand/randomkit.h M numpy/random/tests/test_random.py M numpy/random/tests/test_regression.py M numpy/testing/__init__.py M numpy/testing/decorators.py M numpy/testing/noseclasses.py M numpy/testing/nosetester.py M numpy/testing/tests/test_decorators.py M numpy/testing/tests/test_utils.py M numpy/testing/utils.py M numpy/tests/test_ctypeslib.py A numpy/tests/test_numpy_version.py A numpy/tests/test_reloading.py M numpy/tests/test_scripts.py M pavement.py M runtests.py M setup.py R setupegg.py M site.cfg.example M tools/swig/numpy.i M tools/swig/pyfragments.swg M tools/swig/test/testFortran.py M tools/travis-test.sh A tools/travis-upload-wheel.sh M tools/win32build/build-cpucaps.py M tools/win32build/build.py M tools/win32build/misc/x86analysis.py M tools/win32build/prepare_bootstrap.py Log Message: ----------- Merge branch 'master' into asarray Commit: 12ea33a6fe73f6597cc301ebcb23cb44644addd5 https://github.com/numpy/numpy/commit/12ea33a6fe73f6597cc301ebcb23cb44644addd5 Author: Erik M. Bray Date: 2016-08-29 (Mon, 29 Aug 2016) Changed paths: M numpy/core/tests/test_function_base.py Log Message: ----------- Adds a regression test that demonstrates the issue. Commit: f2c818a056cabc4dc321a2a3b0a747ede644bd6a https://github.com/numpy/numpy/commit/f2c818a056cabc4dc321a2a3b0a747ede644bd6a Author: Fran?ois Bissey Date: 2016-08-30 (Tue, 30 Aug 2016) Changed paths: M numpy/core/tests/test_function_base.py Log Message: ----------- Merge pull request #1 from embray/asarray Adds a regression test that demonstrates the issue. Commit: 9aff656065f2749b83abf127472cafc28e235222 https://github.com/numpy/numpy/commit/9aff656065f2749b83abf127472cafc28e235222 Author: Ralf Gommers Date: 2016-11-06 (Sun, 06 Nov 2016) Changed paths: M numpy/core/function_base.py M numpy/core/tests/test_function_base.py Log Message: ----------- Merge pull request #6659 from kiwifb/asarray BUG: Let linspace accept input that has an array_interface but is not othe? Compare: https://github.com/numpy/numpy/compare/241e6a698e35...9aff656065f2 From noreply at github.com Sun Nov 6 00:56:09 2016 From: noreply at github.com (GitHub) Date: Sat, 05 Nov 2016 21:56:09 -0700 Subject: [Numpy-svn] [numpy/numpy] 381108: Fixed meshgrid to return arrays with same dtype as... Message-ID: <581eb7e918d99_4cfd3fcf8eaf713c15518@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 3811083eee8d61548587f0d52286a08a7744d88f https://github.com/numpy/numpy/commit/3811083eee8d61548587f0d52286a08a7744d88f Author: Elliott M Forney Date: 2014-11-20 (Thu, 20 Nov 2014) Changed paths: M numpy/lib/function_base.py M numpy/lib/tests/test_function_base.py Log Message: ----------- Fixed meshgrid to return arrays with same dtype as arguments. Commit: ecf11a6710a354db52dfb5fe073ee1ce6e15bd3e https://github.com/numpy/numpy/commit/ecf11a6710a354db52dfb5fe073ee1ce6e15bd3e Author: Elliott Forney Date: 2016-10-10 (Mon, 10 Oct 2016) Changed paths: M numpy/lib/function_base.py Log Message: ----------- Fix to meshgrid allows passing array sub-classes Commit: e287741d60205bb920dea15d4e70178453db2788 https://github.com/numpy/numpy/commit/e287741d60205bb920dea15d4e70178453db2788 Author: Ralf Gommers Date: 2016-11-06 (Sun, 06 Nov 2016) Changed paths: M numpy/lib/function_base.py M numpy/lib/tests/test_function_base.py Log Message: ----------- Merge pull request #5302 from idfah/master Fixed meshgrid to return arrays with same dtype as arguments. Compare: https://github.com/numpy/numpy/compare/9aff656065f2...e287741d6020 From noreply at github.com Mon Nov 7 18:59:45 2016 From: noreply at github.com (GitHub) Date: Mon, 07 Nov 2016 15:59:45 -0800 Subject: [Numpy-svn] [numpy/numpy] 846781: MAINT: Cleaned up mailmap Message-ID: <58211571f3079_2b273fa2bfacd13067029@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 846781ebb3fa3fcd7fb3811b0d1f6bb3421dc003 https://github.com/numpy/numpy/commit/846781ebb3fa3fcd7fb3811b0d1f6bb3421dc003 Author: Joseph Fox-Rabinovitz Date: 2016-11-07 (Mon, 07 Nov 2016) Changed paths: M .mailmap Log Message: ----------- MAINT: Cleaned up mailmap [ci skip] Commit: 3fd2fa1d3a1b627b6a13fe963b2c5b14eafb0fbe https://github.com/numpy/numpy/commit/3fd2fa1d3a1b627b6a13fe963b2c5b14eafb0fbe Author: Charles Harris Date: 2016-11-07 (Mon, 07 Nov 2016) Changed paths: M .mailmap Log Message: ----------- Merge pull request #8251 from madphysicist/mailmap-cleanup MAINT: Cleaned up mailmap Compare: https://github.com/numpy/numpy/compare/e287741d6020...3fd2fa1d3a1b From noreply at github.com Wed Nov 9 11:36:29 2016 From: noreply at github.com (GitHub) Date: Wed, 09 Nov 2016 08:36:29 -0800 Subject: [Numpy-svn] [numpy/numpy] 6420f8: BUG: np.piecewise not working for scalars Message-ID: <5823508d19daa_66a03feb82003130695cd@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 6420f844824cdc327026302870b57dfd8c7481f7 https://github.com/numpy/numpy/commit/6420f844824cdc327026302870b57dfd8c7481f7 Author: alvarosg Date: 2016-10-26 (Wed, 26 Oct 2016) Changed paths: M numpy/lib/function_base.py M numpy/lib/tests/test_function_base.py Log Message: ----------- BUG: np.piecewise not working for scalars Commit: 0268680e5db25caeeb69bbb2e62ead3405c8f6f0 https://github.com/numpy/numpy/commit/0268680e5db25caeeb69bbb2e62ead3405c8f6f0 Author: seberg Date: 2016-11-09 (Wed, 09 Nov 2016) Changed paths: M numpy/lib/function_base.py M numpy/lib/tests/test_function_base.py Log Message: ----------- Merge pull request #8194 from alvarosg/scalar-piecewise BUG: np.piecewise not working for scalars Compare: https://github.com/numpy/numpy/compare/3fd2fa1d3a1b...0268680e5db2 From noreply at github.com Thu Nov 10 15:34:54 2016 From: noreply at github.com (GitHub) Date: Thu, 10 Nov 2016 12:34:54 -0800 Subject: [Numpy-svn] [numpy/numpy] f39c92: BUG: np.piecewise not working for scalars Message-ID: <5824d9eebdf20_1ab3f91f566314c1152f6@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.12.x Home: https://github.com/numpy/numpy Commit: f39c92b5924d6d08a3d53d51df1b76dd8d93d90b https://github.com/numpy/numpy/commit/f39c92b5924d6d08a3d53d51df1b76dd8d93d90b Author: alvarosg Date: 2016-11-10 (Thu, 10 Nov 2016) Changed paths: M numpy/lib/function_base.py M numpy/lib/tests/test_function_base.py Log Message: ----------- BUG: np.piecewise not working for scalars Commit: 256b3aa9d29187a814ab789e8cac902bf5a02118 https://github.com/numpy/numpy/commit/256b3aa9d29187a814ab789e8cac902bf5a02118 Author: Charles Harris Date: 2016-11-10 (Thu, 10 Nov 2016) Changed paths: M numpy/lib/function_base.py M numpy/lib/tests/test_function_base.py Log Message: ----------- Merge pull request #8265 from charris/backport-8194 BUG: np.piecewise not working for scalars Compare: https://github.com/numpy/numpy/compare/790c7f7d20cd...256b3aa9d291 From noreply at github.com Fri Nov 11 13:47:30 2016 From: noreply at github.com (GitHub) Date: Fri, 11 Nov 2016 10:47:30 -0800 Subject: [Numpy-svn] [numpy/numpy] 7c784b: DOC: Changed shape assignment example to reshape. ... Message-ID: <58261242c42b5_68393ff520b571381047c4@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7c784b6a2eaa64d2f56f0d363e89a21b15ac8bdf https://github.com/numpy/numpy/commit/7c784b6a2eaa64d2f56f0d363e89a21b15ac8bdf Author: petetanru Date: 2016-11-11 (Fri, 11 Nov 2016) Changed paths: M doc/source/user/quickstart.rst Log Message: ----------- DOC: Changed shape assignment example to reshape. Elaborated modifying shape Commit: a7d244ce2257c4e5115cf802fe34e8ad57bb8e54 https://github.com/numpy/numpy/commit/a7d244ce2257c4e5115cf802fe34e8ad57bb8e54 Author: seberg Date: 2016-11-11 (Fri, 11 Nov 2016) Changed paths: M doc/source/user/quickstart.rst Log Message: ----------- Merge pull request #8267 from petetanru/doc-shapemod DOC: Changed shape assignment example to reshape. Elaborated modifying shape Compare: https://github.com/numpy/numpy/compare/0268680e5db2...a7d244ce2257 From noreply at github.com Sun Nov 13 15:11:41 2016 From: noreply at github.com (GitHub) Date: Sun, 13 Nov 2016 12:11:41 -0800 Subject: [Numpy-svn] [numpy/numpy] 007162: TST: Path test should resolve symlinks when compar... Message-ID: <5828c8fd4f86c_237933fe23c2b114c5267a@hookshot-fe-6dbb0c4.cp1-iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 007162b380b07090463095b2242bb93106fd81a4 https://github.com/numpy/numpy/commit/007162b380b07090463095b2242bb93106fd81a4 Author: Wendell Smith Date: 2016-11-13 (Sun, 13 Nov 2016) Changed paths: M numpy/core/tests/test_memmap.py Log Message: ----------- TST: Path test should resolve symlinks when comparing Addresses #8077, a test failure on OS X. Commit: 2c0d7e9d09f642e0859deb43f9b734ead76a26ed https://github.com/numpy/numpy/commit/2c0d7e9d09f642e0859deb43f9b734ead76a26ed Author: Charles Harris Date: 2016-11-13 (Sun, 13 Nov 2016) Changed paths: M numpy/core/tests/test_memmap.py Log Message: ----------- Merge pull request #8271 from wackywendell/tests-resolve-path TST: Path test should resolve symlinks when comparing Compare: https://github.com/numpy/numpy/compare/a7d244ce2257...2c0d7e9d09f6 From noreply at github.com Sun Nov 13 16:32:57 2016 From: noreply at github.com (GitHub) Date: Sun, 13 Nov 2016 13:32:57 -0800 Subject: [Numpy-svn] [numpy/numpy] f8b319: TST: Path test should resolve symlinks when compar... Message-ID: <5828dc098efca_12373fdd230e91348182d@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.12.x Home: https://github.com/numpy/numpy Commit: f8b319453c28969f3a6743a582a3f2a0451b2856 https://github.com/numpy/numpy/commit/f8b319453c28969f3a6743a582a3f2a0451b2856 Author: Wendell Smith Date: 2016-11-13 (Sun, 13 Nov 2016) Changed paths: M numpy/core/tests/test_memmap.py Log Message: ----------- TST: Path test should resolve symlinks when comparing Addresses #8077, a test failure on OS X. Commit: d414056802bcc9f0dc4123fe294712a74a1f1e16 https://github.com/numpy/numpy/commit/d414056802bcc9f0dc4123fe294712a74a1f1e16 Author: Charles Harris Date: 2016-11-13 (Sun, 13 Nov 2016) Changed paths: M numpy/core/tests/test_memmap.py Log Message: ----------- Merge pull request #8272 from charris/backport-8271 TST: Path test should resolve symlinks when comparing Compare: https://github.com/numpy/numpy/compare/256b3aa9d291...d414056802bc From noreply at github.com Sun Nov 13 18:58:22 2016 From: noreply at github.com (GitHub) Date: Sun, 13 Nov 2016 15:58:22 -0800 Subject: [Numpy-svn] [numpy/numpy] 1f764d: Added axis argument to numpy.unique Message-ID: <5828fe1ef1c1b_3ec43f9af588113c253ad@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 1f764dbff7c496d6636dc0430f083ada9ff4e4be https://github.com/numpy/numpy/commit/1f764dbff7c496d6636dc0430f083ada9ff4e4be Author: martinosorb Date: 2016-11-13 (Sun, 13 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst M numpy/lib/arraysetops.py M numpy/lib/tests/test_arraysetops.py Log Message: ----------- Added axis argument to numpy.unique Commit: 5d062f3e2a29a8da9e8bbc654e86a9df62b20592 https://github.com/numpy/numpy/commit/5d062f3e2a29a8da9e8bbc654e86a9df62b20592 Author: Stephan Hoyer Date: 2016-11-13 (Sun, 13 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst M numpy/lib/arraysetops.py M numpy/lib/tests/test_arraysetops.py Log Message: ----------- Merge pull request #7742 from martinosorb/master Add `axis` argument to numpy.unique Compare: https://github.com/numpy/numpy/compare/2c0d7e9d09f6...5d062f3e2a29 From noreply at github.com Tue Nov 15 07:47:09 2016 From: noreply at github.com (GitHub) Date: Tue, 15 Nov 2016 04:47:09 -0800 Subject: [Numpy-svn] [numpy/numpy] a62c62: DOC: improve comment in prepare_index Message-ID: <582b03cd9d0e0_56213fd6d6efd14c97983@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: a62c62f83e60c743adc99633b6ff8223e2fff8d9 https://github.com/numpy/numpy/commit/a62c62f83e60c743adc99633b6ff8223e2fff8d9 Author: Eric Wieser Date: 2016-11-15 (Tue, 15 Nov 2016) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- DOC: improve comment in prepare_index Commit: 443c2f6d2342dfde73b45862bef8183e62fa34ab https://github.com/numpy/numpy/commit/443c2f6d2342dfde73b45862bef8183e62fa34ab Author: seberg Date: 2016-11-15 (Tue, 15 Nov 2016) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- Merge pull request #8277 from eric-wieser/patch-7 DOC: improve comment in prepare_index Compare: https://github.com/numpy/numpy/compare/5d062f3e2a29...443c2f6d2342 From noreply at github.com Wed Nov 16 18:02:12 2016 From: noreply at github.com (GitHub) Date: Wed, 16 Nov 2016 15:02:12 -0800 Subject: [Numpy-svn] [numpy/numpy] 029587: DOC: Update 1.12.0 release notes. Message-ID: <582ce574c6409_59793f80a299313c66737@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 02958734480ed5aeb35270c7ac513b6093b6761b https://github.com/numpy/numpy/commit/02958734480ed5aeb35270c7ac513b6093b6761b Author: Charles Harris Date: 2016-11-16 (Wed, 16 Nov 2016) Changed paths: M doc/release/1.12.0-notes.rst Log Message: ----------- DOC: Update 1.12.0 release notes. [ci skip] Commit: a80f97561217c926a80aab3e3106732e0985ec1c https://github.com/numpy/numpy/commit/a80f97561217c926a80aab3e3106732e0985ec1c Author: Charles Harris Date: 2016-11-16 (Wed, 16 Nov 2016) Changed paths: M doc/release/1.12.0-notes.rst Log Message: ----------- Merge pull request #8281 from charris/update-1.12.0-notes DOC: Update 1.12.0 release notes. Compare: https://github.com/numpy/numpy/compare/443c2f6d2342...a80f97561217 From noreply at github.com Wed Nov 16 18:14:55 2016 From: noreply at github.com (GitHub) Date: Wed, 16 Nov 2016 15:14:55 -0800 Subject: [Numpy-svn] [numpy/numpy] a6cbc2: DOC: Update 1.12.0 release notes. Message-ID: <582ce86fbb22e_1f71e3fd402b871381296fe@hookshot-fe-6dbb0c4.cp1-iad.github.net.mail> Branch: refs/heads/maintenance/1.12.x Home: https://github.com/numpy/numpy Commit: a6cbc29ce7a1f39883ed6b51cd1decaa1db94396 https://github.com/numpy/numpy/commit/a6cbc29ce7a1f39883ed6b51cd1decaa1db94396 Author: Charles Harris Date: 2016-11-16 (Wed, 16 Nov 2016) Changed paths: M doc/release/1.12.0-notes.rst Log Message: ----------- DOC: Update 1.12.0 release notes. [ci skip] Commit: a650a79b2b0a1fc7b660bf9900f766264a3ca7dc https://github.com/numpy/numpy/commit/a650a79b2b0a1fc7b660bf9900f766264a3ca7dc Author: Charles Harris Date: 2016-11-16 (Wed, 16 Nov 2016) Changed paths: M doc/release/1.12.0-notes.rst Log Message: ----------- Merge pull request #8282 from charris/backport-8281 DOC: Update 1.12.0 release notes. Compare: https://github.com/numpy/numpy/compare/d414056802bc...a650a79b2b0a From noreply at github.com Wed Nov 16 18:46:43 2016 From: noreply at github.com (GitHub) Date: Wed, 16 Nov 2016 15:46:43 -0800 Subject: [Numpy-svn] [numpy/numpy] 675511: REL: NumPy 1.12.0b1 release. Message-ID: <582cefe3408b3_aec33fe38662312c74273@hookshot-fe-6dbb0c4.cp1-iad.github.net.mail> Branch: refs/tags/v1.12.0b1 Home: https://github.com/numpy/numpy Commit: 67551112fa684d1686ed173eb9724a4b8a7a86fa https://github.com/numpy/numpy/commit/67551112fa684d1686ed173eb9724a4b8a7a86fa Author: Charles Harris Date: 2016-11-16 (Wed, 16 Nov 2016) Changed paths: M setup.py Log Message: ----------- REL: NumPy 1.12.0b1 release. From noreply at github.com Thu Nov 17 00:46:13 2016 From: noreply at github.com (GitHub) Date: Wed, 16 Nov 2016 21:46:13 -0800 Subject: [Numpy-svn] [numpy/numpy] 375e90: BUG: Fix pavement.py write_release_task. Message-ID: <582d442515296_c553fb8269a513c550cc@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 375e90dccd32bf5d4308766d635d35734c627e76 https://github.com/numpy/numpy/commit/375e90dccd32bf5d4308766d635d35734c627e76 Author: Charles Harris Date: 2016-11-16 (Wed, 16 Nov 2016) Changed paths: M pavement.py Log Message: ----------- BUG: Fix pavement.py write_release_task. Correct indentation of commands that should be in an open file context. Commit: 1f90d9110b0072a8e3b4a7e5e51ef863ee758c09 https://github.com/numpy/numpy/commit/1f90d9110b0072a8e3b4a7e5e51ef863ee758c09 Author: Ralf Gommers Date: 2016-11-17 (Thu, 17 Nov 2016) Changed paths: M pavement.py Log Message: ----------- Merge pull request #8285 from charris/fix-pavement BUG: Fix pavement.py write_release_task. Compare: https://github.com/numpy/numpy/compare/a80f97561217...1f90d9110b00 From noreply at github.com Thu Nov 17 02:05:43 2016 From: noreply at github.com (GitHub) Date: Wed, 16 Nov 2016 23:05:43 -0800 Subject: [Numpy-svn] [numpy/numpy] bb0f04: BUG: Fix pavement.py write_release_task. Message-ID: <582d56c747ce5_6c093fbf4bd7d1341008e1@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.12.x Home: https://github.com/numpy/numpy Commit: bb0f04d06a5a07516659de35237da1286d2cb4ae https://github.com/numpy/numpy/commit/bb0f04d06a5a07516659de35237da1286d2cb4ae Author: Charles Harris Date: 2016-11-16 (Wed, 16 Nov 2016) Changed paths: M pavement.py Log Message: ----------- BUG: Fix pavement.py write_release_task. Correct indentation of commands that should be in an open file context. Commit: 7912e9c868947866131c2a42024d873898106901 https://github.com/numpy/numpy/commit/7912e9c868947866131c2a42024d873898106901 Author: Ralf Gommers Date: 2016-11-17 (Thu, 17 Nov 2016) Changed paths: M pavement.py Log Message: ----------- Merge pull request #8286 from charris/fix-pavement BUG: Fix pavement.py write_release_task. Compare: https://github.com/numpy/numpy/compare/a650a79b2b0a...7912e9c86894 From noreply at github.com Thu Nov 17 02:25:12 2016 From: noreply at github.com (GitHub) Date: Wed, 16 Nov 2016 23:25:12 -0800 Subject: [Numpy-svn] [numpy/numpy] 4ef137: DOC: Update 1.13.0 release notes. Message-ID: <582d5b581a33f_1f5a3fcd9bba7130771ac@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 4ef137aba1172ef753b47d9d701b760de13716a3 https://github.com/numpy/numpy/commit/4ef137aba1172ef753b47d9d701b760de13716a3 Author: Charles Harris Date: 2016-11-17 (Thu, 17 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst Log Message: ----------- DOC: Update 1.13.0 release notes. Change markup of title so that it works properly on the Github releases page. [ci skip] Commit: ec02bdc782f1de83520dfd2c4eb0c48d69c909e6 https://github.com/numpy/numpy/commit/ec02bdc782f1de83520dfd2c4eb0c48d69c909e6 Author: Ralf Gommers Date: 2016-11-17 (Thu, 17 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst Log Message: ----------- Merge pull request #8287 from charris/update-1.13.0-notes DOC: Update 1.13.0 release notes. Compare: https://github.com/numpy/numpy/compare/1f90d9110b00...ec02bdc782f1 From noreply at github.com Sat Nov 19 13:48:55 2016 From: noreply at github.com (GitHub) Date: Sat, 19 Nov 2016 10:48:55 -0800 Subject: [Numpy-svn] [numpy/numpy] 3f3d20: MAINT: let average preserve subclass information. Message-ID: <58309e97eebf9_2b32e3f847f4951401458fa@hookshot-fe-6dbb0c4.cp1-iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 3f3d205cd3f607caeada0dddf41e996e288a3c50 https://github.com/numpy/numpy/commit/3f3d205cd3f607caeada0dddf41e996e288a3c50 Author: Marten van Kerkwijk Date: 2016-11-19 (Sat, 19 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst M numpy/lib/function_base.py M numpy/lib/tests/test_function_base.py Log Message: ----------- MAINT: let average preserve subclass information. This behaviour matches that for most other numpy functions (such as np.mean). It was initially slated for 1.12, but replaced by a FutureWarning. Hence, this is for 1.13. Commit: a91309771b0025c4e291501d0c00bf4178a66c38 https://github.com/numpy/numpy/commit/a91309771b0025c4e291501d0c00bf4178a66c38 Author: Charles Harris Date: 2016-11-19 (Sat, 19 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst M numpy/lib/function_base.py M numpy/lib/tests/test_function_base.py Log Message: ----------- Merge pull request #8290 from mhvk/average-preserve-subclasses MAINT: let average preserve subclass information. Compare: https://github.com/numpy/numpy/compare/ec02bdc782f1...a91309771b00 From noreply at github.com Tue Nov 22 13:39:08 2016 From: noreply at github.com (GitHub) Date: Tue, 22 Nov 2016 10:39:08 -0800 Subject: [Numpy-svn] [numpy/numpy] cce86d: BUG: Fix iteration over reversed subspaces in mapi... Message-ID: <583490cc9095f_52293fddd573b138178a4@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: cce86d6241d6fa8253ca119a0b47b05a5b375996 https://github.com/numpy/numpy/commit/cce86d6241d6fa8253ca119a0b47b05a5b375996 Author: Yu Feng Date: 2016-11-21 (Mon, 21 Nov 2016) Changed paths: M numpy/core/src/multiarray/lowlevel_strided_loops.c.src M numpy/core/tests/test_indexing.py Log Message: ----------- BUG: Fix iteration over reversed subspaces in mapiter_ at name@. As stated in #8264, before this patch numpy crashes when the subspace of iterator has negative strides on the faster resetting branch for trivially iterable subspaces in mapiter_ at name@. Noticing the offset between ptr and first item in subspace is constant, we calculate the offset from the first iteration and use it onwards. Fixes #8264 Commit: ce6d3ffc991c63c1a91fd806b4eb3d0008caace2 https://github.com/numpy/numpy/commit/ce6d3ffc991c63c1a91fd806b4eb3d0008caace2 Author: seberg Date: 2016-11-22 (Tue, 22 Nov 2016) Changed paths: M numpy/core/src/multiarray/lowlevel_strided_loops.c.src M numpy/core/tests/test_indexing.py Log Message: ----------- Merge pull request #8284 from rainwoodman/fix-8264 BUG: Fix iteration over reversed subspaces in mapiter_ at name@ Compare: https://github.com/numpy/numpy/compare/a91309771b00...ce6d3ffc991c From noreply at github.com Tue Nov 22 15:31:13 2016 From: noreply at github.com (GitHub) Date: Tue, 22 Nov 2016 12:31:13 -0800 Subject: [Numpy-svn] [numpy/numpy] 2cb0dd: BUG: Fix iteration over reversed subspaces in mapi... Message-ID: <5834ab118c046_6de03feb889fd13012143@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.12.x Home: https://github.com/numpy/numpy Commit: 2cb0ddfcc6d83e68c45a9fd9bb99357c0ba8b7ac https://github.com/numpy/numpy/commit/2cb0ddfcc6d83e68c45a9fd9bb99357c0ba8b7ac Author: Yu Feng Date: 2016-11-22 (Tue, 22 Nov 2016) Changed paths: M numpy/core/src/multiarray/lowlevel_strided_loops.c.src M numpy/core/tests/test_indexing.py Log Message: ----------- BUG: Fix iteration over reversed subspaces in mapiter_ at name@. As stated in #8264, before this patch numpy crashes when the subspace of iterator has negative strides on the faster resetting branch for trivially iterable subspaces in mapiter_ at name@. Noticing the offset between ptr and first item in subspace is constant, we calculate the offset from the first iteration and use it onwards. Fixes #8264 Commit: 068ce97b8496bc49be497824aa2a199f7fbdaa56 https://github.com/numpy/numpy/commit/068ce97b8496bc49be497824aa2a199f7fbdaa56 Author: Charles Harris Date: 2016-11-22 (Tue, 22 Nov 2016) Changed paths: M numpy/core/src/multiarray/lowlevel_strided_loops.c.src M numpy/core/tests/test_indexing.py Log Message: ----------- Merge pull request #8296 from charris/backport-8284 BUG: Fix iteration over reversed subspaces in mapiter_ at name@. Compare: https://github.com/numpy/numpy/compare/7912e9c86894...068ce97b8496 From noreply at github.com Wed Nov 23 13:03:32 2016 From: noreply at github.com (GitHub) Date: Wed, 23 Nov 2016 10:03:32 -0800 Subject: [Numpy-svn] [numpy/numpy] 2a8bb9: BUG: in PyArg_ParseTupleAndKeywords, O passes the ... Message-ID: <5835d9f46123b_e493fb41ea3513048613@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 2a8bb91a18f1ceb50a2caee5acf96f8120ed265e https://github.com/numpy/numpy/commit/2a8bb91a18f1ceb50a2caee5acf96f8120ed265e Author: Matti Picus Date: 2016-11-23 (Wed, 23 Nov 2016) Changed paths: M numpy/core/src/umath/ufunc_object.c Log Message: ----------- BUG: in PyArg_ParseTupleAndKeywords, O passes the PyObject through with no INCREF Commit: 2075e1fee6091176052c9ae4cf7f8ea9b9a31c9e https://github.com/numpy/numpy/commit/2075e1fee6091176052c9ae4cf7f8ea9b9a31c9e Author: Charles Harris Date: 2016-11-23 (Wed, 23 Nov 2016) Changed paths: M numpy/core/src/umath/ufunc_object.c Log Message: ----------- Merge pull request #8302 from mattip/excessive-decref BUG: Fix PyPy crash in PyUFunc_GenericReduction. Compare: https://github.com/numpy/numpy/compare/ce6d3ffc991c...2075e1fee609 From noreply at github.com Wed Nov 23 15:30:34 2016 From: noreply at github.com (GitHub) Date: Wed, 23 Nov 2016 12:30:34 -0800 Subject: [Numpy-svn] [numpy/numpy] 2d1082: BUG: in PyArg_ParseTupleAndKeywords, O passes the ... Message-ID: <5835fc6a62d16_b2e53fb7e804713c217e9@hookshot-fe-6dbb0c4.cp1-iad.github.net.mail> Branch: refs/heads/maintenance/1.12.x Home: https://github.com/numpy/numpy Commit: 2d108263a7375be7e9730503fd57b40bb57d428a https://github.com/numpy/numpy/commit/2d108263a7375be7e9730503fd57b40bb57d428a Author: Matti Picus Date: 2016-11-23 (Wed, 23 Nov 2016) Changed paths: M numpy/core/src/umath/ufunc_object.c Log Message: ----------- BUG: in PyArg_ParseTupleAndKeywords, O passes the PyObject through with no INCREF Commit: da6bdf4d3a9e2afc3dd335f62a8c7b6b5dfe8948 https://github.com/numpy/numpy/commit/da6bdf4d3a9e2afc3dd335f62a8c7b6b5dfe8948 Author: Charles Harris Date: 2016-11-23 (Wed, 23 Nov 2016) Changed paths: M numpy/core/src/umath/ufunc_object.c Log Message: ----------- Merge pull request #8304 from charris/backport-8302 BUG: Fix PyPy crash in PyUFunc_GenericReduction. Compare: https://github.com/numpy/numpy/compare/068ce97b8496...da6bdf4d3a9e From noreply at github.com Thu Nov 24 09:56:11 2016 From: noreply at github.com (GitHub) Date: Thu, 24 Nov 2016 06:56:11 -0800 Subject: [Numpy-svn] [numpy/numpy] 8df25b: BUG: do not link to Accelerate if OpenBLAS, MKL or... Message-ID: <5836ff8b7db17_2d26e3fb50e8411306801@hookshot-fe-6dbb0c4.cp1-iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 8df25b2bd5de5de259ecc5ce5e325b80f7d163cb https://github.com/numpy/numpy/commit/8df25b2bd5de5de259ecc5ce5e325b80f7d163cb Author: Ralf Gommers Date: 2016-11-24 (Thu, 24 Nov 2016) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- BUG: do not link to Accelerate if OpenBLAS, MKL or BLIS are found. Closes gh-8293. Commit: 4d885d387c7fc9f2d9046197f6f1b1b4e886e833 https://github.com/numpy/numpy/commit/4d885d387c7fc9f2d9046197f6f1b1b4e886e833 Author: Charles Harris Date: 2016-11-24 (Thu, 24 Nov 2016) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- Merge pull request #8308 from rgommers/fix-accelerate-link BUG: do not link to Accelerate if OpenBLAS, MKL or BLIS are found. Compare: https://github.com/numpy/numpy/compare/2075e1fee609...4d885d387c7f From noreply at github.com Fri Nov 25 10:45:17 2016 From: noreply at github.com (GitHub) Date: Fri, 25 Nov 2016 07:45:17 -0800 Subject: [Numpy-svn] [numpy/numpy] 9fe73d: BUG: add checks for some invalid structured dtypes... Message-ID: <58385c8d7313b_3a13fd975f0113840688@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 9fe73dda45e711fe61eb88ed15afca12bdaba8b2 https://github.com/numpy/numpy/commit/9fe73dda45e711fe61eb88ed15afca12bdaba8b2 Author: James Sanders Date: 2016-11-24 (Thu, 24 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst M numpy/core/src/multiarray/descriptor.c M numpy/core/tests/test_regression.py Log Message: ----------- BUG: add checks for some invalid structured dtypes. Fixes #2865. Commit: e80b948dc527d41d9a1fd59b09a7c790783e1d90 https://github.com/numpy/numpy/commit/e80b948dc527d41d9a1fd59b09a7c790783e1d90 Author: ahaldane Date: 2016-11-25 (Fri, 25 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst M numpy/core/src/multiarray/descriptor.c M numpy/core/tests/test_regression.py Log Message: ----------- Merge pull request #8235 from J-Sand/invalid-structured-dtypes-fix BUG: add checks for some invalid structured dtypes. Fixes #2865. Compare: https://github.com/numpy/numpy/compare/4d885d387c7f...e80b948dc527 From noreply at github.com Sat Nov 26 12:39:05 2016 From: noreply at github.com (GitHub) Date: Sat, 26 Nov 2016 09:39:05 -0800 Subject: [Numpy-svn] [numpy/numpy] d2542d: BLD: blacklist powl (longdouble power function) on... Message-ID: <5839c8b96c8b3_2b493fb48c69d1308065f@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: d2542d5f00c1be3f2e8aa53be30e67554a667b85 https://github.com/numpy/numpy/commit/d2542d5f00c1be3f2e8aa53be30e67554a667b85 Author: Ralf Gommers Date: 2016-11-26 (Sat, 26 Nov 2016) Changed paths: M numpy/core/src/private/npy_config.h Log Message: ----------- BLD: blacklist powl (longdouble power function) on OS X. Closes gh-8307. Commit: 7ec8f69a82528dabf6eb1e480293715dd3d02697 https://github.com/numpy/numpy/commit/7ec8f69a82528dabf6eb1e480293715dd3d02697 Author: Charles Harris Date: 2016-11-26 (Sat, 26 Nov 2016) Changed paths: M numpy/core/src/private/npy_config.h Log Message: ----------- Merge pull request #8318 from rgommers/powl-osx BLD: blacklist powl (longdouble power function) on OS X. Compare: https://github.com/numpy/numpy/compare/e80b948dc527...7ec8f69a8252 From noreply at github.com Sat Nov 26 12:53:24 2016 From: noreply at github.com (GitHub) Date: Sat, 26 Nov 2016 09:53:24 -0800 Subject: [Numpy-svn] [numpy/numpy] 013dd2: DEP: Make a == None and a != None compare element-... Message-ID: <5839cc141056a_2ab983fbb51029134111589@hookshot-fe-6dbb0c4.cp1-iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 013dd26851bfcac73671fd3df85cf8a04c1ff200 https://github.com/numpy/numpy/commit/013dd26851bfcac73671fd3df85cf8a04c1ff200 Author: Charles Harris Date: 2016-11-21 (Mon, 21 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst M numpy/core/src/multiarray/arrayobject.c M numpy/core/tests/test_deprecations.py M numpy/core/tests/test_numeric.py M numpy/core/tests/test_scalarmath.py M numpy/ma/tests/test_core.py Log Message: ----------- DEP: Make a == None and a != None compare element-wise. These changes have been warned of since numpy 1.7.0 for the == case and since numpy 1.8 for the != case. This makes both operators compare element-wise for this case. Commit: 38ba1e3c1ce6895ab2c0b3f61c2ad95e6db757bf https://github.com/numpy/numpy/commit/38ba1e3c1ce6895ab2c0b3f61c2ad95e6db757bf Author: Charles Harris Date: 2016-11-22 (Tue, 22 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst M numpy/core/src/multiarray/item_selection.c M numpy/core/tests/test_multiarray.py Log Message: ----------- DEP: Make non-integer partition index raise TypeError. Non-integer index has been deprecated since NumPy 1.8.0. Commit: e9a7e2884a20db689fe92a9b435ff7de06d356a8 https://github.com/numpy/numpy/commit/e9a7e2884a20db689fe92a9b435ff7de06d356a8 Author: Charles Harris Date: 2016-11-22 (Tue, 22 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst M numpy/core/src/multiarray/nditer_constr.c Log Message: ----------- DEP: ``NpyIter_AdvancedNew`` deprecation to ValueError NpyIter_AdvancedNew raises ValueError when `oa_ndim == 0` and `op_axes` is NULL. Deprecated since NumPy 1.8. Commit: ff097d486887ae0a8eae4f3ecc2adece1c63ac43 https://github.com/numpy/numpy/commit/ff097d486887ae0a8eae4f3ecc2adece1c63ac43 Author: Charles Harris Date: 2016-11-22 (Tue, 22 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst M numpy/core/src/umath/ufunc_type_resolution.c M numpy/core/tests/test_deprecations.py M numpy/core/tests/test_scalarmath.py M numpy/core/tests/test_umath.py Log Message: ----------- DEP: Raise TypeError for np.negative(bool_). The unary minus of booleans was deprecated in NumPy 1.9. Commit: c9adc35e68b92b10ab0b20069465fd784388bc14 https://github.com/numpy/numpy/commit/c9adc35e68b92b10ab0b20069465fd784388bc14 Author: Charles Harris Date: 2016-11-22 (Tue, 22 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst M numpy/core/src/umath/ufunc_type_resolution.c M numpy/core/tests/test_deprecations.py M numpy/core/tests/test_scalarmath.py M numpy/core/tests/test_umath.py Log Message: ----------- DEP: Raise TypeError for subtract(bool_, bool_). Subtracting a bool_ from a bool_ was deprecated in NumPy 1.9 Commit: f562e5bcf699d3e30c204107c8e843290ac797d0 https://github.com/numpy/numpy/commit/f562e5bcf699d3e30c204107c8e843290ac797d0 Author: Charles Harris Date: 2016-11-23 (Wed, 23 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst M numpy/core/src/umath/loops.c.src M numpy/core/tests/test_deprecations.py M numpy/core/tests/test_umath.py Log Message: ----------- DEP: Make np.equal and np.not_equal ignore object identity. This only applies to object arrays. Previously object identity would override object comparison failures, comparison of objects that did not return a boolean (arrays), and comparison of objects where the comparison result did not agree with the object identity result (NaNs) The first two behaviors have been deprecated since 1.9 and now return errors. The last has issued a FutureWarning since 1.9 and now returns the result of the comparison. Commit: dc27edb92ec70b5c0ade8ecd1ed78884a0a0a5dc https://github.com/numpy/numpy/commit/dc27edb92ec70b5c0ade8ecd1ed78884a0a0a5dc Author: Charles Harris Date: 2016-11-26 (Sat, 26 Nov 2016) Changed paths: M doc/release/1.13.0-notes.rst M numpy/core/src/multiarray/arrayobject.c M numpy/core/src/multiarray/item_selection.c M numpy/core/src/multiarray/nditer_constr.c M numpy/core/src/umath/loops.c.src M numpy/core/src/umath/ufunc_type_resolution.c M numpy/core/tests/test_deprecations.py M numpy/core/tests/test_multiarray.py M numpy/core/tests/test_numeric.py M numpy/core/tests/test_scalarmath.py M numpy/core/tests/test_umath.py M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #8297 from charris/expired-deprecations DEP: Handle expired deprecations. Compare: https://github.com/numpy/numpy/compare/7ec8f69a8252...dc27edb92ec7 From noreply at github.com Sat Nov 26 14:17:13 2016 From: noreply at github.com (GitHub) Date: Sat, 26 Nov 2016 11:17:13 -0800 Subject: [Numpy-svn] [numpy/numpy] 8ef099: BLD: blacklist powl (longdouble power function) on... Message-ID: <5839dfb971cda_30363f93974ad13810631@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.12.x Home: https://github.com/numpy/numpy Commit: 8ef0992b58754cfc87c8124e00bd59377303e705 https://github.com/numpy/numpy/commit/8ef0992b58754cfc87c8124e00bd59377303e705 Author: Ralf Gommers Date: 2016-11-26 (Sat, 26 Nov 2016) Changed paths: M numpy/core/src/private/npy_config.h Log Message: ----------- BLD: blacklist powl (longdouble power function) on OS X. Closes gh-8307. Commit: 75a586f1c8f9e7a00210fb269049029b46be0ae0 https://github.com/numpy/numpy/commit/75a586f1c8f9e7a00210fb269049029b46be0ae0 Author: Charles Harris Date: 2016-11-26 (Sat, 26 Nov 2016) Changed paths: M numpy/core/src/private/npy_config.h Log Message: ----------- Merge pull request #8319 from charris/backport-8318 BLD: blacklist powl (longdouble power function) on OS X. Compare: https://github.com/numpy/numpy/compare/da6bdf4d3a9e...75a586f1c8f9 From noreply at github.com Sat Nov 26 14:17:25 2016 From: noreply at github.com (GitHub) Date: Sat, 26 Nov 2016 11:17:25 -0800 Subject: [Numpy-svn] [numpy/numpy] da07c6: BUG: do not link to Accelerate if OpenBLAS, MKL or... Message-ID: <5839dfc56e053_25b063fa1e44b3140801d3@hookshot-fe-6dbb0c4.cp1-iad.github.net.mail> Branch: refs/heads/maintenance/1.12.x Home: https://github.com/numpy/numpy Commit: da07c6209ff2ac4cc67e4b794f5409de346e8ad8 https://github.com/numpy/numpy/commit/da07c6209ff2ac4cc67e4b794f5409de346e8ad8 Author: Ralf Gommers Date: 2016-11-26 (Sat, 26 Nov 2016) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- BUG: do not link to Accelerate if OpenBLAS, MKL or BLIS are found. Closes gh-8293. Commit: 6de14279380f38db1dd433f963ede8cb30ce1a10 https://github.com/numpy/numpy/commit/6de14279380f38db1dd433f963ede8cb30ce1a10 Author: Charles Harris Date: 2016-11-26 (Sat, 26 Nov 2016) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- Merge pull request #8320 from charris/backport-8308 BUG: do not link to Accelerate if OpenBLAS, MKL or BLIS are found. Compare: https://github.com/numpy/numpy/compare/75a586f1c8f9...6de14279380f From noreply at github.com Sun Nov 27 15:32:41 2016 From: noreply at github.com (GitHub) Date: Sun, 27 Nov 2016 12:32:41 -0800 Subject: [Numpy-svn] [numpy/numpy] 8a7e7a: BUG: fixed kind specifications for parameters Message-ID: <583b42e9dc039_17ba3fb43607114096525@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 8a7e7a44c194e3c748ccee0862f4ae01e371a208 https://github.com/numpy/numpy/commit/8a7e7a44c194e3c748ccee0862f4ae01e371a208 Author: Nick Papior Date: 2016-11-27 (Sun, 27 Nov 2016) Changed paths: M numpy/f2py/crackfortran.py A numpy/f2py/tests/src/parameter/constant_both.f90 A numpy/f2py/tests/src/parameter/constant_integer.f90 A numpy/f2py/tests/src/parameter/constant_real.f90 A numpy/f2py/tests/test_parameter.py M numpy/f2py/tests/test_regression.py Log Message: ----------- BUG: fixed kind specifications for parameters Fortran sources with parameters having kind-specifiers where not correctly intercepted in the crackfortran.py source. The reason was a restrictive check for only integer specifiers which did not split real's into the correct number. Furthermore, several tests has been added which tests the different kind specifiers and their use in codes, also all of them together. Signed-off-by: Nick Papior Commit: a4dca241647a31a4313238fa183b67e453c1de0f https://github.com/numpy/numpy/commit/a4dca241647a31a4313238fa183b67e453c1de0f Author: Charles Harris Date: 2016-11-27 (Sun, 27 Nov 2016) Changed paths: M numpy/f2py/crackfortran.py A numpy/f2py/tests/src/parameter/constant_both.f90 A numpy/f2py/tests/src/parameter/constant_integer.f90 A numpy/f2py/tests/src/parameter/constant_real.f90 A numpy/f2py/tests/test_parameter.py M numpy/f2py/tests/test_regression.py Log Message: ----------- Merge pull request #8299 from zerothi/f2py-parameter BUG: Make f2py respect kind specifications for real parameters Compare: https://github.com/numpy/numpy/compare/dc27edb92ec7...a4dca241647a From noreply at github.com Sun Nov 27 16:20:49 2016 From: noreply at github.com (GitHub) Date: Sun, 27 Nov 2016 13:20:49 -0800 Subject: [Numpy-svn] [numpy/numpy] d0eea4: BUG: fixed kind specifications for parameters Message-ID: <583b4e31d421_ca33feff1977130773cc@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.12.x Home: https://github.com/numpy/numpy Commit: d0eea4a784ac23a79e9f209c1378d24ba6082d63 https://github.com/numpy/numpy/commit/d0eea4a784ac23a79e9f209c1378d24ba6082d63 Author: Nick Papior Date: 2016-11-27 (Sun, 27 Nov 2016) Changed paths: M numpy/f2py/crackfortran.py A numpy/f2py/tests/src/parameter/constant_both.f90 A numpy/f2py/tests/src/parameter/constant_integer.f90 A numpy/f2py/tests/src/parameter/constant_real.f90 A numpy/f2py/tests/test_parameter.py M numpy/f2py/tests/test_regression.py Log Message: ----------- BUG: fixed kind specifications for parameters Fortran sources with parameters having kind-specifiers where not correctly intercepted in the crackfortran.py source. The reason was a restrictive check for only integer specifiers which did not split real's into the correct number. Furthermore, several tests has been added which tests the different kind specifiers and their use in codes, also all of them together. Signed-off-by: Nick Papior Commit: 06ccd84b957468dfa59df967da395042b1028c9b https://github.com/numpy/numpy/commit/06ccd84b957468dfa59df967da395042b1028c9b Author: Charles Harris Date: 2016-11-27 (Sun, 27 Nov 2016) Changed paths: M numpy/f2py/crackfortran.py A numpy/f2py/tests/src/parameter/constant_both.f90 A numpy/f2py/tests/src/parameter/constant_integer.f90 A numpy/f2py/tests/src/parameter/constant_real.f90 A numpy/f2py/tests/test_parameter.py M numpy/f2py/tests/test_regression.py Log Message: ----------- Merge pull request #8322 from charris/backport-8299 BUG: fixed kind specifications for parameters Compare: https://github.com/numpy/numpy/compare/6de14279380f...06ccd84b9574