[Python-modules-commits] [dask] branch master updated (f575d26 -> b4f027b)

Diane Trout diane at moszumanska.debian.org
Tue Apr 25 03:40:11 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  f575d26   Initial Packaging (Closes: #817777)
       new  8d49b60   Import dask_0.14.1.orig.tar.gz
       new  3585ac9   record new upstream branch created by importing dask_0.14.1.orig.tar.gz and merge it
       new  4ffcd70   New upstream release
       new  4726214   remove unnecessary debian/files
       new  34c4f5e   Update required build-depends versions for partd and toolz
       new  48f540a   Update recommened dask.distributed version
       new  b4f027b   Update autopkgtest depends

The 7 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:
 .github/ISSUE_TEMPLATE.md                          |   22 +
 .travis.yml                                        |   51 +-
 README.rst                                         |    4 +-
 appveyor.yml                                       |   12 +-
 continuous_integration/{ => appveyor}/build.cmd    |    0
 .../{ => appveyor}/run_tests.cmd                   |    0
 .../{ => appveyor}/run_with_env.cmd                |    0
 .../{ => appveyor}/setup_conda_environment.cmd     |    6 +-
 continuous_integration/travis/after_success.sh     |    5 +
 continuous_integration/travis/install.sh           |   66 +
 continuous_integration/travis/run_tests.sh         |   12 +
 continuous_integration/travis/test_imports.sh      |   34 +
 dask/__init__.py                                   |   10 +-
 dask/array/__init__.py                             |    5 +-
 dask/array/chunk.py                                |    7 +-
 dask/array/core.py                                 |  703 +++++----
 dask/array/creation.py                             |   12 +-
 dask/array/fft.py                                  |   99 +-
 dask/array/ghost.py                                |   30 +-
 dask/array/learn.py                                |   10 +-
 dask/array/linalg.py                               |  113 +-
 dask/array/optimization.py                         |   65 +-
 dask/array/percentile.py                           |    6 +-
 dask/array/random.py                               |   13 +-
 dask/array/rechunk.py                              |  513 ++++++-
 dask/array/reductions.py                           |   90 +-
 dask/array/reshape.py                              |  186 +++
 dask/array/slicing.py                              |    6 +
 dask/array/tests/test_array_core.py                |  568 ++++++--
 dask/array/tests/test_creation.py                  |   28 +-
 dask/array/tests/test_fft.py                       |  131 +-
 dask/array/tests/test_ghost.py                     |    6 +-
 dask/array/tests/test_learn.py                     |    4 +
 dask/array/tests/test_linalg.py                    |   23 +
 dask/array/tests/test_optimization.py              |   63 +-
 dask/array/tests/test_random.py                    |    2 +-
 dask/array/tests/test_rechunk.py                   |  251 +++-
 dask/array/tests/test_reductions.py                |   10 +
 dask/array/tests/test_reshape.py                   |   45 +
 dask/array/tests/test_slicing.py                   |    4 +-
 dask/array/tests/test_ufunc.py                     |   13 +
 dask/array/tests/test_wrap.py                      |    2 +-
 dask/array/ufunc.py                                |   60 +-
 dask/array/utils.py                                |   23 +-
 dask/array/wrap.py                                 |    6 +-
 dask/async.py                                      |   42 +-
 dask/bag/__init__.py                               |    3 +-
 dask/bag/core.py                                   |  185 +--
 dask/bag/tests/test_bag.py                         |  139 +-
 dask/bag/tests/test_text.py                        |   10 +
 dask/bag/text.py                                   |   25 +-
 dask/base.py                                       |  289 +++-
 dask/bytes/compression.py                          |   56 +-
 dask/bytes/core.py                                 |  548 ++++---
 dask/bytes/local.py                                |  172 +--
 dask/bytes/s3.py                                   |  221 +--
 dask/bytes/tests/test_local.py                     |  100 +-
 dask/bytes/tests/test_s3.py                        |  162 ++-
 dask/bytes/utils.py                                |   17 +-
 dask/compatibility.py                              |   79 +-
 dask/context.py                                    |    2 +-
 dask/core.py                                       |   23 +-
 dask/dataframe/__init__.py                         |   10 +-
 dask/dataframe/accessor.py                         |  178 +--
 dask/dataframe/categorical.py                      |  247 +++-
 dask/dataframe/core.py                             | 1510 +++++++++++++-------
 dask/dataframe/groupby.py                          |  563 +++++---
 dask/dataframe/hashing.py                          |  132 ++
 dask/dataframe/hyperloglog.py                      |   84 ++
 dask/dataframe/indexing.py                         |   80 +-
 dask/dataframe/io/__init__.py                      |    8 +-
 dask/dataframe/io/csv.py                           |  179 ++-
 dask/dataframe/io/demo.py                          |  117 +-
 dask/dataframe/io/hdf.py                           |  144 +-
 dask/dataframe/io/io.py                            |  203 +--
 dask/dataframe/io/parquet.py                       |  319 +++++
 dask/dataframe/io/tests/test_csv.py                |  120 +-
 dask/dataframe/io/tests/test_demo.py               |   28 +-
 dask/dataframe/io/tests/test_hdf.py                |   69 +-
 dask/dataframe/io/tests/test_io.py                 |  170 +--
 dask/dataframe/io/tests/test_parquet.py            |  353 +++++
 dask/dataframe/methods.py                          |  163 ++-
 dask/dataframe/multi.py                            |  221 ++-
 dask/dataframe/optimize.py                         |   36 +-
 dask/dataframe/reshape.py                          |   29 +-
 dask/dataframe/rolling.py                          |  357 ++---
 dask/dataframe/shuffle.py                          |  179 ++-
 dask/dataframe/tests/test_arithmetics_reduction.py |   58 +-
 dask/dataframe/tests/test_categorical.py           |  268 +++-
 dask/dataframe/tests/test_dataframe.py             | 1011 +++++++------
 dask/dataframe/tests/test_format.py                |  453 ++++++
 dask/dataframe/tests/test_groupby.py               |  433 +++++-
 dask/dataframe/tests/test_hashing.py               |   48 +
 dask/dataframe/tests/test_hyperloglog.py           |   72 +
 dask/dataframe/tests/test_indexing.py              |   23 +
 dask/dataframe/tests/test_multi.py                 |  365 ++++-
 dask/dataframe/tests/test_optimize_dataframe.py    |   31 +-
 dask/dataframe/tests/test_reshape.py               |   65 +-
 dask/dataframe/tests/test_rolling.py               |  175 +--
 dask/dataframe/tests/test_shuffle.py               |  109 +-
 dask/dataframe/tests/test_utils_dataframe.py       |   45 +-
 dask/dataframe/tseries/resample.py                 |   17 +-
 dask/dataframe/utils.py                            |  137 +-
 dask/delayed.py                                    |  191 +--
 dask/diagnostics/profile_visualize.py              |   39 +-
 dask/diagnostics/tests/test_profiler.py            |   19 +-
 dask/diagnostics/tests/test_progress.py            |   28 +-
 dask/dot.py                                        |    5 +-
 dask/multiprocessing.py                            |   16 +-
 dask/optimize.py                                   |  706 +++++----
 dask/sharedict.py                                  |   99 ++
 dask/sizeof.py                                     |   79 +
 dask/tests/test_async.py                           |    2 +-
 dask/tests/test_base.py                            |  115 +-
 dask/tests/test_callbacks.py                       |   42 +
 dask/tests/test_core.py                            |    8 +-
 dask/tests/test_delayed.py                         |  111 +-
 dask/tests/test_distributed.py                     |   56 +
 dask/tests/test_dot.py                             |   11 +
 dask/tests/test_multiprocessing.py                 |   21 +-
 dask/tests/test_optimize.py                        | 1107 +++++++++++---
 dask/tests/test_rewrite.py                         |    1 +
 dask/tests/test_sharedict.py                       |   82 ++
 dask/tests/test_sizeof.py                          |   55 +
 dask/tests/test_utils.py                           |  142 +-
 dask/threaded.py                                   |    9 +-
 dask/utils.py                                      |  304 +++-
 dask/utils_test.py                                 |   10 +
 debian/.git-dpm                                    |   14 +-
 debian/changelog                                   |    9 +
 debian/control                                     |    6 +-
 debian/files                                       |    1 -
 debian/tests/control                               |   12 +-
 docs/release-procedure.md                          |    9 +-
 docs/requirements-docs.txt                         |    2 +-
 docs/source/array-creation.rst                     |   61 +
 docs/source/array-overview.rst                     |   16 +-
 docs/source/array-stack.rst                        |    4 +-
 docs/source/bytes.rst                              |    3 +
 docs/source/changelog.rst                          |  157 +-
 docs/source/dataframe-api.rst                      |   59 +-
 docs/source/dataframe-create.rst                   |  181 +--
 docs/source/dataframe-design.rst                   |   85 +-
 docs/source/dataframe-performance.rst              |  202 +++
 docs/source/dataframe.rst                          |    1 +
 docs/source/delayed-api.rst                        |    2 -
 docs/source/delayed-overview.rst                   |    2 +-
 docs/source/delayed.rst                            |   19 +-
 docs/source/examples-tutorials.rst                 |    4 +
 docs/source/faq.rst                                |    5 +
 docs/source/funding.rst                            |   20 +
 docs/source/images/inc-add.svg                     |   68 +
 docs/source/index.rst                              |    5 +
 docs/source/optimize.rst                           |   31 +-
 docs/source/presentations.rst                      |   32 +
 docs/source/remote-data-services.rst               |  237 +++
 docs/source/scheduler-overview.rst                 |    2 +
 setup.py                                           |   18 +-
 158 files changed, 13738 insertions(+), 4988 deletions(-)
 create mode 100644 .github/ISSUE_TEMPLATE.md
 rename continuous_integration/{ => appveyor}/build.cmd (100%)
 rename continuous_integration/{ => appveyor}/run_tests.cmd (100%)
 rename continuous_integration/{ => appveyor}/run_with_env.cmd (100%)
 rename continuous_integration/{ => appveyor}/setup_conda_environment.cmd (83%)
 create mode 100644 continuous_integration/travis/after_success.sh
 create mode 100644 continuous_integration/travis/install.sh
 create mode 100644 continuous_integration/travis/run_tests.sh
 create mode 100644 continuous_integration/travis/test_imports.sh
 create mode 100644 dask/array/reshape.py
 create mode 100644 dask/array/tests/test_reshape.py
 create mode 100644 dask/dataframe/hashing.py
 create mode 100644 dask/dataframe/hyperloglog.py
 create mode 100644 dask/dataframe/io/parquet.py
 create mode 100644 dask/dataframe/io/tests/test_parquet.py
 create mode 100644 dask/dataframe/tests/test_format.py
 create mode 100644 dask/dataframe/tests/test_hashing.py
 create mode 100644 dask/dataframe/tests/test_hyperloglog.py
 create mode 100644 dask/sharedict.py
 create mode 100644 dask/sizeof.py
 create mode 100644 dask/tests/test_sharedict.py
 create mode 100644 dask/tests/test_sizeof.py
 delete mode 100644 debian/files
 create mode 100644 docs/source/dataframe-performance.rst
 create mode 100644 docs/source/funding.rst
 create mode 100644 docs/source/images/inc-add.svg
 create mode 100644 docs/source/presentations.rst
 create mode 100644 docs/source/remote-data-services.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