[Python-modules-commits] [python-numpy] branch master updated (6460a2c -> 4a02554)

Sandro Tosi morph at moszumanska.debian.org
Fri Jan 6 04:15:25 UTC 2017


This is an automated email from the git hooks/post-receive script.

morph pushed a change to branch master
in repository python-numpy.

      from  6460a2c   releasing package python-numpy version 1:1.12.0~b1-1
       new  ab9042e   record new upstream branch created by importing python-numpy_1.12.0~rc2.orig.tar.gz
       new  82398c3   Import python-numpy_1.12.0~rc2.orig.tar.gz
       new  ef7cc55   force generation f2py postfixed with interpreter version
       new  d06a89d   Use a local copy of object.inv from doc.python.org, instead of downloading it each time from the internet
       new  04ca92e   adapt to python3 multiarch soabi
       new  d2b401b   Adapt SWIG documentation to Debian
       new  bae9fee   Dont fail if we cant import mingw32
       new  c28c0b3   disable asserts on ppc with broken malloc only longdouble affected will still work with softfaults
       new  28416e0   merge patched into master
       new  2a33e7c   New upstream release candidate
       new  9a8efa2   let linspace accept input that has an array_interface: Closes: #842348
       new  b47e322   add a lock to assert_equal and other testing functions: Closes: #849196
       new  8446532   extend packaging copyright years
       new  4a02554   releasing package python-numpy version 1:1.12.0~rc2-1

The 14 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 PKG-INFO                                           |     2 +-
 debian/.git-dpm                                    |    14 +-
 debian/changelog                                   |    10 +
 debian/copyright                                   |     2 +-
 .../0005-Dont-fail-if-we-cant-import-mingw32.patch |     2 +-
 ...erts-on-ppc-with-broken-malloc-only-longd.patch |     4 +-
 debian/patches/03_force_f2py_version.patch         |     2 +-
 .../10_use_local_python.org_object.inv_sphinx.diff |     2 +-
 debian/patches/adapt_swig_docs_to_debian.patch     |     2 +-
 debian/patches/python3-soabi.patch                 |     2 +-
 doc/release/1.11.3-notes.rst                       |    25 +
 doc/release/1.12.0-notes.rst                       |  1205 +-
 doc/source/release.rst                             |     1 +
 numpy/add_newdocs.py                               |     5 +-
 numpy/core/function_base.py                        |     7 +-
 numpy/core/numeric.py                              |     4 +-
 numpy/core/src/multiarray/compiled_base.c          |     8 -
 numpy/core/src/multiarray/convert.c                |    13 +-
 .../src/multiarray/lowlevel_strided_loops.c.src    |    39 +-
 numpy/core/src/npymath/npy_math_complex.c.src      |     2 +-
 numpy/core/src/private/npy_config.h                |     5 +
 numpy/core/src/umath/ufunc_object.c                |     1 -
 numpy/core/tests/test_api.py                       |     2 +-
 numpy/core/tests/test_function_base.py             |    36 +
 numpy/core/tests/test_indexing.py                  |     9 +
 numpy/core/tests/test_multiarray.py                |    13 +-
 numpy/distutils/command/build_src.py               |    11 +-
 numpy/distutils/cpuinfo.py                         |     6 +-
 numpy/distutils/fcompiler/compaq.py                |     4 +-
 numpy/distutils/fcompiler/gnu.py                   |     2 +-
 numpy/distutils/fcompiler/ibm.py                   |     2 +-
 numpy/distutils/fcompiler/intel.py                 |     2 +-
 numpy/distutils/fcompiler/vast.py                  |     4 +-
 numpy/distutils/from_template.py                   |     8 +-
 numpy/distutils/intelccompiler.py                  |     4 +-
 numpy/distutils/mingw32ccompiler.py                |     2 +-
 numpy/distutils/misc_util.py                       |     2 +-
 numpy/distutils/npy_pkg_config.py                  |     4 +-
 numpy/distutils/system_info.py                     |     6 +-
 numpy/f2py/crackfortran.py                         |    51 +-
 numpy/f2py/tests/src/parameter/constant_both.f90   |    57 +
 .../f2py/tests/src/parameter/constant_integer.f90  |    22 +
 numpy/f2py/tests/src/parameter/constant_real.f90   |    23 +
 numpy/f2py/tests/test_parameter.py                 |   102 +
 numpy/f2py/tests/test_regression.py                |     5 +-
 numpy/lib/_iotools.py                              |     2 +-
 numpy/lib/function_base.py                         |    18 +-
 numpy/lib/nanfunctions.py                          |     5 +-
 numpy/lib/shape_base.py                            |     2 +-
 numpy/lib/tests/test_nanfunctions.py               |    48 +-
 numpy/lib/tests/test_packbits.py                   |    65 +-
 numpy/lib/tests/test_shape_base.py                 |     6 +
 numpy/lib/utils.py                                 |    46 +
 numpy/ma/extras.py                                 |    57 +-
 numpy/ma/tests/test_extras.py                      |   255 +-
 numpy/polynomial/chebyshev.py                      |    10 +-
 numpy/polynomial/hermite.py                        |    10 +-
 numpy/polynomial/hermite_e.py                      |    10 +-
 numpy/polynomial/laguerre.py                       |     8 +-
 numpy/polynomial/legendre.py                       |     2 +-
 numpy/polynomial/polynomial.py                     |     2 +-
 numpy/random/mtrand/mtrand.c                       | 16819 ++++++++++++-------
 numpy/testing/nosetester.py                        |    12 +-
 numpy/testing/utils.py                             |    43 +-
 numpy/version.py                                   |     8 +-
 setup.py                                           |     2 +-
 66 files changed, 12008 insertions(+), 7156 deletions(-)
 create mode 100644 doc/release/1.11.3-notes.rst
 create mode 100644 numpy/f2py/tests/src/parameter/constant_both.f90
 create mode 100644 numpy/f2py/tests/src/parameter/constant_integer.f90
 create mode 100644 numpy/f2py/tests/src/parameter/constant_real.f90
 create mode 100644 numpy/f2py/tests/test_parameter.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-numpy.git



More information about the Python-modules-commits mailing list