[Python-modules-commits] [dask] branch master updated (160a138 -> bef491c)

Diane Trout diane at moszumanska.debian.org
Wed Jul 26 22:02:02 UTC 2017


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

diane pushed a change to branch master
in repository dask.

      from  160a138   Relax selected optional dependencies
       new  c989df9   unset http_proxy for tests, just in case it was pointing at apt-cache-ng
       new  f5cbe3f   New upstream version 0.15.1
       new  647a75f   Updated version 0.15.1 from 'upstream/0.15.1'
       new  d5bd53d   Remove Add-MathJax-Sphinx-extension, applied upstream
       new  10a864d   Refresh Use-the-packaged-MathJax.patch
       new  452a0e4   numpydoc >= 0.7 FTBFS with Dask's method of reusing docstrings
       new  8df6d5d   Add more testing runtime dependencies
       new  bef491c   Update for New upstream release. 0.15.1

The 8 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:
 .travis.yml                                        |  10 +-
 MANIFEST.in                                        |   4 +-
 continuous_integration/travis/install.sh           |  26 +-
 continuous_integration/travis/run_tests.sh         |   2 +
 dask/__init__.py                                   |   8 +-
 dask/array/__init__.py                             |  18 +-
 dask/array/core.py                                 | 492 +++++++++-------
 dask/array/fft.py                                  |  67 +++
 dask/array/ghost.py                                |   4 +-
 dask/array/optimization.py                         | 121 ++--
 dask/array/percentile.py                           |   4 -
 dask/array/random.py                               |   2 +-
 dask/array/reductions.py                           | 149 +++--
 dask/array/slicing.py                              | 206 ++++---
 dask/array/stats.py                                | 432 ++++++++++++++
 dask/array/tests/test_array_core.py                | 224 +++++--
 dask/array/tests/test_fft.py                       |  79 +++
 dask/array/tests/test_ghost.py                     |   6 +-
 dask/array/tests/test_learn.py                     |   5 +-
 dask/array/tests/test_linalg.py                    |  56 +-
 dask/array/tests/test_optimization.py              | 154 +++--
 dask/array/tests/test_percentiles.py               |   3 +-
 dask/array/tests/test_reductions.py                |  71 ++-
 dask/array/tests/test_slicing.py                   |  75 ++-
 dask/array/tests/test_sparse.py                    |  16 +-
 dask/array/tests/test_stats.py                     | 135 +++++
 dask/array/tests/test_ufunc.py                     | 220 +++++--
 dask/array/ufunc.py                                | 232 +++++---
 dask/array/utils.py                                |   2 +-
 dask/array/wrap.py                                 |  12 -
 dask/async.py                                      | 648 +--------------------
 dask/bag/__init__.py                               |   3 +-
 dask/bag/core.py                                   | 625 +++++++++++++++-----
 dask/bag/tests/test_bag.py                         | 248 ++++++--
 dask/bag/text.py                                   |   2 +-
 dask/base.py                                       |  34 +-
 dask/bytes/core.py                                 |  48 +-
 dask/bytes/local.py                                |   8 +-
 dask/bytes/s3.py                                   |   6 +-
 dask/bytes/tests/test_bytes_utils.py               |  62 +-
 dask/bytes/tests/test_local.py                     |  31 +
 dask/bytes/utils.py                                |  53 +-
 dask/callbacks.py                                  |  18 +
 dask/compatibility.py                              |  15 +
 dask/dataframe/core.py                             |  85 +--
 dask/dataframe/groupby.py                          |  18 +-
 dask/dataframe/io/csv.py                           |  63 +-
 dask/dataframe/io/demo.py                          |   6 +-
 dask/dataframe/io/hdf.py                           |  14 +-
 dask/dataframe/io/io.py                            |  13 +-
 dask/dataframe/io/parquet.py                       | 118 ++--
 dask/dataframe/io/tests/test_csv.py                |  48 +-
 dask/dataframe/io/tests/test_demo.py               |   2 +
 dask/dataframe/io/tests/test_hdf.py                |   6 +-
 dask/dataframe/io/tests/test_io.py                 |  15 +-
 dask/dataframe/io/tests/test_parquet.py            |  87 ++-
 dask/dataframe/methods.py                          |  14 +-
 dask/dataframe/multi.py                            |   2 +
 dask/dataframe/shuffle.py                          |  23 +
 dask/dataframe/tests/test_arithmetics_reduction.py |  12 +-
 dask/dataframe/tests/test_categorical.py           |   6 +-
 dask/dataframe/tests/test_dataframe.py             | 106 +++-
 dask/dataframe/tests/test_groupby.py               | 113 ++--
 dask/dataframe/tests/test_hyperloglog.py           |   4 +-
 dask/dataframe/tests/test_indexing.py              |  14 +
 dask/dataframe/tests/test_multi.py                 |  51 +-
 dask/dataframe/tests/test_rolling.py               |  47 +-
 dask/dataframe/tests/test_shuffle.py               |  31 +-
 dask/dataframe/tests/test_ufunc.py                 | 128 ++--
 dask/dataframe/tests/test_utils_dataframe.py       |  12 +-
 dask/dataframe/utils.py                            |  54 +-
 dask/delayed.py                                    |  48 +-
 dask/diagnostics/tests/test_progress.py            |   2 +-
 dask/distributed.py                                |   4 +-
 dask/hashing.py                                    | 102 ++++
 dask/{async.py => local.py}                        | 251 +++-----
 dask/multiprocessing.py                            |  96 ++-
 dask/tests/test_base.py                            |  19 +-
 dask/tests/test_cache.py                           |   2 +-
 dask/tests/test_callbacks.py                       |  35 +-
 dask/tests/test_delayed.py                         |  16 +-
 dask/tests/test_distributed.py                     |   4 +-
 dask/tests/test_hashing.py                         |  45 ++
 dask/tests/{test_async.py => test_local.py}        |  20 +-
 dask/tests/test_multiprocessing.py                 |  14 +-
 dask/tests/test_sizeof.py                          |   9 +-
 dask/tests/test_threaded.py                        |   5 +-
 dask/tests/test_utils.py                           | 197 +++----
 dask/threaded.py                                   |  19 +-
 dask/utils.py                                      | 460 +++++----------
 debian/changelog                                   |   2 +-
 debian/patches/Add-MathJax-Sphinx-extension.patch  |  21 -
 debian/patches/Use-the-packaged-MathJax.patch      |   4 +-
 .../avoid-duplicate-notes-with-numpydoc.patch      |  19 +
 debian/patches/series                              |   2 +-
 debian/tests/control                               |   6 +-
 docs/release-procedure.md                          |   9 +
 docs/requirements-docs.txt                         |   3 +-
 docs/source/array-api.rst                          |  40 ++
 docs/source/array-creation.rst                     |   2 +-
 docs/source/array-overview.rst                     |   4 +-
 docs/source/array-stats.rst                        |  36 ++
 docs/source/array.rst                              |   1 +
 docs/source/bag-api.rst                            |  13 +-
 docs/source/changelog.rst                          |  44 ++
 docs/source/conf.py                                |   2 +-
 docs/source/dataframe-api.rst                      |   1 -
 docs/source/dataframe-create.rst                   |   2 +-
 docs/source/dataframe-design.rst                   |   2 +-
 docs/source/debugging.rst                          |   2 +-
 docs/source/diagnostics.rst                        |   7 +-
 docs/source/examples-tutorials.rst                 |   2 +
 docs/source/examples/array-extend.rst              |   4 +-
 docs/source/faq.rst                                |  10 +-
 docs/source/futures.rst                            | 525 +++++++++++++++++
 docs/source/index.rst                              |  12 +-
 docs/source/install.rst                            |  18 +-
 docs/source/remote-data-services.rst               |   2 +-
 docs/source/scheduler-choice.rst                   |  27 +-
 docs/source/scheduler-overview.rst                 |   6 +-
 docs/source/scheduling-policy.rst                  |   7 +-
 docs/source/scripts/scheduling.py                  |   6 +-
 docs/source/shared.rst                             |   4 +-
 setup.py                                           |   4 +-
 124 files changed, 5108 insertions(+), 2817 deletions(-)
 create mode 100644 dask/array/stats.py
 create mode 100644 dask/array/tests/test_stats.py
 create mode 100644 dask/hashing.py
 copy dask/{async.py => local.py} (73%)
 create mode 100644 dask/tests/test_hashing.py
 rename dask/tests/{test_async.py => test_local.py} (90%)
 delete mode 100644 debian/patches/Add-MathJax-Sphinx-extension.patch
 create mode 100644 debian/patches/avoid-duplicate-notes-with-numpydoc.patch
 create mode 100644 docs/source/array-stats.rst
 create mode 100644 docs/source/futures.rst

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



More information about the Python-modules-commits mailing list