[Python-modules-commits] [mpmath] branch master updated (0039dad -> ce1a5ca)

Sandro Tosi morph at moszumanska.debian.org
Sun Nov 26 05:20:29 UTC 2017


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

morph pushed a change to branch master
in repository mpmath.

      from  0039dad   d/copyright: Changed licence shortname BSD -> BSD-3-clause
       new  d20339f   update to use github tags, so the tarball will contain code and doc source
       new  4eb531a   record new upstream branch created by importing mpmath_1.0.0.orig.tar.gz
       new  c49af29   Import mpmath_1.0.0.orig.tar.gz
       new  38f88ea   merge patched into master
       new  ef89cc0   New upstream release
       new  b90f848   extend packaging copyright years
       new  164c627   update upstream copyright years
       new  7f1bd88   bump to compat level 9
       new  c0d9e0f   bump Standards-Version to 4.1.1 (no changes needed)
       new  ff13995   Use python3-sphinx to build doc
       new  a74430f   add dh-python to b-d
       new  ebb5bdb   run tests from inside the mpmath directory
       new  ce1a5ca   releasing package mpmath version 1.0.0-1

The 13 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:
 .gitattributes                                     |   2 +
 .gitignore                                         |  47 ++
 .travis.yml                                        |  17 +
 CHANGES                                            |  39 +
 LICENSE                                            |   2 +-
 MANIFEST.in                                        |   4 +
 PKG-INFO                                           |  11 -
 README.rst                                         |  20 +-
 TODO                                               |   1 +
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  21 +-
 debian/compat                                      |   2 +-
 debian/control                                     |   6 +-
 debian/copyright                                   |   4 +-
 .../93b3e5ed85feeafcfeb36f3d90524c57871daba3.patch |  22 -
 debian/patches/series                              |   1 -
 debian/rules                                       |   4 +-
 debian/watch                                       |   6 +-
 demo/plotting.py                                   |   2 +-
 doc/run_doctest.py                                 |  15 -
 doc/source/basics.txt                              |  26 +-
 doc/source/calculus/index.txt                      |   1 +
 doc/source/calculus/inverselaplace.txt             |  64 ++
 doc/source/conf.py                                 |  19 +-
 doc/source/conf.py~                                | 137 ----
 doc/source/contexts.txt                            |  30 +-
 doc/source/functions/gamma.txt                     |   9 +-
 doc/source/general.txt~                            | 228 ------
 doc/source/matrices.txt                            |  36 +-
 doc/source/matrices.txt~                           | 539 --------------
 doc/source/plots/ai.py                             |   2 +-
 doc/source/plots/ai_c.py                           |   2 +-
 doc/source/plots/ber.py                            |   2 +-
 doc/source/plots/besseli.py                        |   2 +-
 doc/source/plots/besseli_c.py                      |   2 +-
 doc/source/plots/besselj.py                        |   2 +-
 doc/source/plots/besselj_c.py                      |   2 +-
 doc/source/plots/besselk.py                        |   2 +-
 doc/source/plots/besselk_c.py                      |   2 +-
 doc/source/plots/bessely.py                        |   2 +-
 doc/source/plots/bessely_c.py                      |   2 +-
 doc/source/plots/bi.py                             |   2 +-
 doc/source/plots/bi_c.py                           |   2 +-
 doc/source/plots/chebyt.py                         |   2 +-
 doc/source/plots/chebyu.py                         |   2 +-
 doc/source/plots/coulombf.py                       |   2 +-
 doc/source/plots/coulombf_c.py                     |   2 +-
 doc/source/plots/coulombg.py                       |   2 +-
 doc/source/plots/coulombg_c.py                     |   2 +-
 doc/source/plots/ellipk.py                         |   2 +-
 doc/source/plots/gi.py                             |   2 +-
 doc/source/plots/gi_c.py                           |   2 +-
 doc/source/plots/hankel1.py                        |   2 +-
 doc/source/plots/hankel1_c.py                      |   2 +-
 doc/source/plots/hankel2.py                        |   2 +-
 doc/source/plots/hankel2_c.py                      |   2 +-
 doc/source/plots/hermite.py                        |   2 +-
 doc/source/plots/hi.py                             |   2 +-
 doc/source/plots/hi_c.py                           |   2 +-
 doc/source/plots/ker.py                            |   2 +-
 doc/source/plots/kleinj.py                         |   2 +-
 doc/source/plots/kleinj2.py                        |   2 +-
 doc/source/plots/laguerre.py                       |   2 +-
 doc/source/plots/lambertw.py                       |   2 +-
 doc/source/plots/lambertw_c.py                     |   2 +-
 doc/source/plots/legendre.py                       |   2 +-
 doc/source/plots/lommels1.py                       |   2 +-
 doc/source/plots/lommels2.py                       |   2 +-
 doc/source/plots/spherharm40.py                    |   2 +-
 doc/source/plots/spherharm41.py                    |   2 +-
 doc/source/plots/spherharm42.py                    |   2 +-
 doc/source/plots/spherharm43.py                    |   2 +-
 doc/source/plots/spherharm43.py~                   |  11 -
 doc/source/setup.txt                               |  29 +-
 doc/tag_docs.py                                    |  35 -
 epydoc.conf                                        | 148 ++++
 mpmath/__init__.py                                 |   9 +-
 mpmath/calculus/differentiation.py                 |   2 +-
 mpmath/calculus/extrapolation.py                   |   8 +-
 mpmath/calculus/inverselaplace.py                  | 828 +++++++++++++++++++++
 mpmath/calculus/optimization.py                    |  12 +-
 mpmath/calculus/polynomials.py                     |  11 +-
 mpmath/calculus/quadrature.py                      |   8 +-
 mpmath/ctx_base.py                                 |   3 +
 mpmath/ctx_mp.py                                   |  20 +
 mpmath/ctx_mp_python.py                            |   4 +-
 mpmath/function_docs.py                            |  63 +-
 mpmath/functions/bessel.py                         |   4 +-
 mpmath/functions/elliptic.py                       |  19 +-
 mpmath/functions/expintegrals.py                   |   5 +
 mpmath/functions/functions.py                      |  13 +-
 mpmath/functions/hypergeometric.py                 |  33 +-
 mpmath/functions/qfunctions.py                     |   4 +-
 mpmath/functions/rszeta.py                         |  31 +-
 mpmath/functions/zeta.py                           |  13 +-
 mpmath/functions/zetazeros.py                      |  20 +-
 mpmath/libmp/backend.py                            |   5 +-
 mpmath/libmp/gammazeta.py                          |   6 +-
 mpmath/libmp/libelefun.py                          |  18 +-
 mpmath/libmp/libhyper.py                           |   2 +
 mpmath/libmp/libmpc.py                             |   4 +-
 mpmath/libmp/libmpf.py                             |  17 +-
 mpmath/math2.py                                    |   2 +-
 mpmath/matrices/calculus.py                        |   2 +-
 mpmath/matrices/eigen.py                           |  30 +-
 mpmath/matrices/eigen_symmetric.py                 |  23 +-
 mpmath/matrices/linalg.py                          |  38 +-
 mpmath/matrices/matrices.py                        |  23 +-
 mpmath/tests/runtests.py                           |   1 -
 mpmath/tests/test_basic_ops.py                     |  42 +-
 mpmath/tests/test_bitwise.py                       |  16 +
 mpmath/tests/test_calculus.py                      |  93 +++
 mpmath/tests/test_convert.py                       |   1 -
 mpmath/tests/test_eigen.py                         |  62 +-
 mpmath/tests/test_eigen_symmetric.py               |  54 +-
 mpmath/tests/test_elliptic.py                      |  17 +
 mpmath/tests/test_functions.py                     |   2 +
 mpmath/tests/test_functions2.py                    |  37 +-
 mpmath/tests/test_gammazeta.py                     |   4 +
 mpmath/tests/test_hp.py                            |   1 -
 mpmath/tests/test_levin.py                         |  26 +-
 mpmath/tests/test_linalg.py                        |   4 +-
 mpmath/tests/test_matrices.py                      |  41 +-
 mpmath/tests/test_rootfinding.py                   |   2 -
 mpmath/tests/test_str.py                           |   1 -
 mpmath/tests/torture.py                            |   1 -
 mpmath/visualization.py                            |  41 +-
 setup.cfg                                          |  16 +
 setup.py                                           |  12 +-
 129 files changed, 1929 insertions(+), 1461 deletions(-)
 create mode 100644 .gitattributes
 create mode 100644 .gitignore
 create mode 100644 .travis.yml
 create mode 100644 MANIFEST.in
 delete mode 100644 PKG-INFO
 create mode 100644 TODO
 delete mode 100644 debian/patches/93b3e5ed85feeafcfeb36f3d90524c57871daba3.patch
 delete mode 100644 debian/patches/series
 delete mode 100644 doc/run_doctest.py
 create mode 100644 doc/source/calculus/inverselaplace.txt
 delete mode 100644 doc/source/conf.py~
 delete mode 100644 doc/source/general.txt~
 delete mode 100644 doc/source/matrices.txt~
 delete mode 100644 doc/source/plots/spherharm43.py~
 delete mode 100644 doc/tag_docs.py
 create mode 100644 epydoc.conf
 create mode 100644 mpmath/calculus/inverselaplace.py
 create mode 100644 setup.cfg

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



More information about the Python-modules-commits mailing list