[Python-modules-commits] [dask.distributed] branch master updated (6a7d8f1 -> 58d86ef)

Diane Trout diane at moszumanska.debian.org
Wed Apr 26 06:37:55 UTC 2017


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

diane pushed a change to branch master
in repository dask.distributed.

      from  6a7d8f1   Fixup filenamemangle regex
       new  58d86ef   Import dask.distributed_1.16.1+ds.1.orig.tar.gz

The 1 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                                        |   98 +-
 MANIFEST.in                                        |    3 +
 appveyor.yml                                       |   40 +
 continuous_integration/Dockerfile                  |   60 +-
 continuous_integration/README.md                   |    2 +-
 continuous_integration/build.cmd                   |    6 +
 .../docker-files/cdh5-install.sh                   |   17 -
 continuous_integration/docker-files/cloudera.pref  |    3 -
 continuous_integration/docker-files/core-site.xml  |    7 +
 continuous_integration/docker-files/hdfs-site.xml  |   51 +
 .../docker-files/libhdfs-build.sh                  |    8 -
 continuous_integration/docker-files/start.sh       |   24 +-
 continuous_integration/run-hdfs.sh                 |   33 +
 continuous_integration/run_tests.cmd               |    9 +
 continuous_integration/run_with_env.cmd            |   90 +
 continuous_integration/setup_conda_environment.cmd |   33 +
 dev-requirements.txt                               |   11 +
 distributed/__init__.py                            |   11 +-
 distributed/_ipython_utils.py                      |    8 +-
 distributed/_version.py                            |  520 +++++
 distributed/batched.py                             |  236 +--
 distributed/bokeh/__init__.py                      |    6 +-
 distributed/bokeh/application.py                   |   23 +-
 distributed/bokeh/background/server_lifecycle.py   |   56 +-
 distributed/bokeh/components.py                    |   85 +-
 distributed/bokeh/core.py                          |   93 +
 distributed/bokeh/export_tool.py                   |    5 +-
 distributed/bokeh/memory-usage.py                  |    1 +
 distributed/bokeh/processing-stacks.py             |    1 +
 distributed/bokeh/resource-profiles.py             |    1 +
 distributed/bokeh/scheduler.py                     |  352 +++
 distributed/bokeh/status/main.py                   |    3 +-
 distributed/bokeh/task-progress.py                 |    1 +
 distributed/bokeh/task-stream.py                   |    1 +
 distributed/bokeh/tasks/main.py                    |    3 +-
 distributed/bokeh/tests/test_application.py        |    6 +-
 distributed/bokeh/tests/test_components.py         |    5 +-
 distributed/bokeh/tests/test_scheduler_bokeh.py    |   95 +
 distributed/bokeh/tests/test_worker_bokeh.py       |  126 ++
 distributed/bokeh/tests/test_worker_monitor.py     |   24 +-
 distributed/bokeh/utils.py                         |    6 +
 distributed/bokeh/worker-table.py                  |    1 +
 distributed/bokeh/worker.py                        |  606 ++++++
 distributed/bokeh/worker_monitor.py                |    9 +-
 distributed/bokeh/workers/main.py                  |    9 +-
 distributed/channels.py                            |  300 +++
 distributed/cli/dask_scheduler.py                  |   54 +-
 distributed/cli/dask_ssh.py                        |    7 +-
 distributed/cli/dask_worker.py                     |  160 +-
 distributed/cli/tests/test_cli_utils.py            |   51 +
 distributed/cli/tests/test_dask_scheduler.py       |  115 +-
 distributed/cli/tests/test_dask_worker.py          |  108 +
 distributed/cli/tests/test_dworker.py              |   38 -
 distributed/cli/utils.py                           |   36 +
 distributed/client.py                              |  887 +++++---
 distributed/collections.py                         |   22 +-
 distributed/comm/__init__.py                       |   35 +
 distributed/comm/addressing.py                     |  163 ++
 distributed/comm/core.py                           |  187 ++
 distributed/comm/inproc.py                         |  327 +++
 distributed/comm/registry.py                       |   72 +
 distributed/comm/tcp.py                            |  331 +++
 distributed/comm/tests/test_comms.py               |  802 +++++++
 distributed/comm/utils.py                          |   65 +
 distributed/comm/zmq.py                            |  301 +++
 distributed/comm/zmqimpl.py                        |  239 +++
 distributed/compatibility.py                       |  160 +-
 distributed/config.py                              |   62 +-
 distributed/config.yaml                            |    9 +
 distributed/core.py                                |  699 +++---
 distributed/counter.py                             |   67 +
 distributed/deploy/__init__.py                     |    2 +
 distributed/deploy/adaptive.py                     |   43 +-
 distributed/deploy/local.py                        |  127 +-
 distributed/deploy/ssh.py                          |  115 +-
 distributed/deploy/tests/test_adaptive.py          |   33 +-
 distributed/deploy/tests/test_local.py             |  111 +-
 distributed/deploy/tests/test_ssh.py               |    6 +-
 distributed/deploy/utils_test.py                   |    3 +-
 distributed/diagnostics/eventstream.py             |   18 +-
 distributed/diagnostics/plugin.py                  |    8 +
 distributed/diagnostics/progress.py                |   13 +-
 distributed/diagnostics/progress_stream.py         |  109 +-
 distributed/diagnostics/progressbar.py             |   63 +-
 distributed/diagnostics/scheduler.py               |   14 +-
 distributed/diagnostics/tests/test_eventstream.py  |   42 +-
 distributed/diagnostics/tests/test_progress.py     |   12 +-
 .../diagnostics/tests/test_progress_stream.py      |   44 +-
 distributed/diagnostics/tests/test_progressbar.py  |   15 +-
 .../tests/test_scheduler_diagnostics.py            |   17 +-
 distributed/diagnostics/tests/test_widgets.py      |   15 +-
 distributed/hdfs.py                                |  195 +-
 distributed/http/core.py                           |   23 +-
 distributed/http/scheduler.py                      |   26 +-
 distributed/http/tests/test_scheduler_http.py      |   25 +-
 distributed/http/tests/test_worker_http.py         |   46 +-
 distributed/http/worker.py                         |   20 +-
 distributed/metrics.py                             |   85 +
 distributed/nanny.py                               |  400 ++--
 distributed/protocol/__init__.py                   |   21 +-
 distributed/protocol/compression.py                |   20 +-
 distributed/protocol/core.py                       |   43 +-
 distributed/protocol/h5py.py                       |    4 -
 distributed/protocol/keras.py                      |   39 +
 distributed/protocol/netcdf4.py                    |    2 -
 distributed/protocol/numpy.py                      |   47 +-
 distributed/protocol/pickle.py                     |   36 +-
 distributed/protocol/serialize.py                  |   86 +-
 distributed/protocol/tests/test_h5py.py            |   51 +-
 distributed/protocol/tests/test_keras.py           |   29 +
 distributed/protocol/tests/test_netcdf4.py         |    1 -
 distributed/protocol/tests/test_numpy.py           |   51 +-
 distributed/protocol/tests/test_pandas.py          |   57 +
 distributed/protocol/tests/test_protocol.py        |   22 +-
 distributed/protocol/tests/test_protocol_utils.py  |    3 +
 distributed/protocol/tests/test_serialize.py       |   41 +-
 distributed/protocol/utils.py                      |    6 +-
 distributed/publish.py                             |   46 +
 distributed/recreate_exceptions.py                 |  179 ++
 distributed/scheduler.py                           | 2238 +++++++++++---------
 distributed/sizeof.py                              |   77 +-
 distributed/stealing.py                            |  298 +++
 distributed/submit.py                              |    6 +-
 distributed/sync.py                                |   80 -
 distributed/system_monitor.py                      |   71 +
 distributed/tests/py3_test_client.py               |   39 +
 distributed/tests/test_as_completed.py             |   83 +
 distributed/tests/test_batched.py                  |  232 +-
 distributed/tests/test_channels.py                 |  204 ++
 distributed/tests/test_client.py                   | 1100 ++++++----
 distributed/tests/test_collections.py              |   40 +-
 distributed/tests/test_compatibility.py            |   28 +-
 distributed/tests/test_core.py                     |  457 +++-
 distributed/tests/test_counter.py                  |   43 +
 distributed/tests/test_hdfs.py                     |  294 +--
 distributed/tests/test_ipython.py                  |   14 +-
 distributed/tests/test_joblib.py                   |    5 +-
 distributed/tests/test_metrics.py                  |   21 +
 distributed/tests/test_nanny.py                    |   81 +-
 distributed/tests/test_publish.py                  |  165 ++
 distributed/tests/test_resources.py                |  219 ++
 distributed/tests/test_scheduler.py                | 1007 ++++-----
 distributed/tests/test_sizeof.py                   |   51 +-
 distributed/tests/test_steal.py                    |  436 +++-
 distributed/tests/test_stress.py                   |  103 +-
 distributed/tests/test_submit_cli.py               |   12 +-
 distributed/tests/test_submit_remote_client.py     |   22 +-
 distributed/tests/test_sync.py                     |   12 -
 distributed/tests/test_system_monitor.py           |   20 +
 distributed/tests/test_threadpoolexecutor.py       |    6 +-
 distributed/tests/test_utils.py                    |  117 +-
 distributed/tests/test_utils_comm.py               |   20 +-
 distributed/tests/test_utils_test.py               |   66 +-
 distributed/tests/test_worker.py                   |  602 +++---
 distributed/tests/test_worker_client.py            |   63 +-
 distributed/tests/test_worker_failure.py           |   93 +-
 distributed/threadpoolexecutor.py                  |    9 +-
 distributed/utils.py                               |  230 +-
 distributed/utils_comm.py                          |   56 +-
 distributed/utils_test.py                          |  716 +++++--
 distributed/versions.py                            |    1 +
 distributed/worker.py                              | 2157 ++++++++++++++-----
 distributed/worker_client.py                       |   61 +-
 docs/requirements.txt                              |    2 +
 docs/source/api.rst                                |   13 +
 docs/source/changelog.rst                          |  209 ++
 docs/source/channels.rst                           |  149 ++
 docs/source/communications.rst                     |   98 +
 docs/source/conf.py                                |    8 +
 docs/source/ec2.rst                                |    4 +-
 docs/source/faq.rst                                |   45 +-
 docs/source/foundations.rst                        |   92 +-
 docs/source/images/task-state.dot                  |    6 +-
 docs/source/images/task-state.svg                  |  150 +-
 docs/source/images/worker-dep-state.dot            |    8 +
 docs/source/images/worker-dep-state.svg            |   38 +
 docs/source/images/worker-task-state.dot           |   13 +
 docs/source/images/worker-task-state.svg           |   78 +
 docs/source/index.rst                              |    7 +-
 docs/source/limitations.rst                        |   46 +
 docs/source/protocol.rst                           |   84 +-
 docs/source/resources.rst                          |   60 +
 docs/source/scheduling-policies.rst                |    7 +-
 docs/source/scheduling-state.rst                   |   93 +-
 docs/source/setup.rst                              |   29 +
 docs/source/task-launch.rst                        |   14 +-
 docs/source/web.rst                                |   39 +-
 docs/source/worker.rst                             |   57 +-
 release-notes.md                                   |  132 --
 requirements.txt                                   |   10 +-
 setup.cfg                                          |   49 +
 setup.py                                           |   30 +-
 versioneer.py                                      | 1817 ++++++++++++++++
 193 files changed, 19459 insertions(+), 6082 deletions(-)
 create mode 100644 appveyor.yml
 create mode 100644 continuous_integration/build.cmd
 delete mode 100644 continuous_integration/docker-files/cdh5-install.sh
 delete mode 100644 continuous_integration/docker-files/cloudera.pref
 create mode 100644 continuous_integration/docker-files/core-site.xml
 create mode 100644 continuous_integration/docker-files/hdfs-site.xml
 delete mode 100644 continuous_integration/docker-files/libhdfs-build.sh
 mode change 100644 => 100755 continuous_integration/docker-files/start.sh
 create mode 100755 continuous_integration/run-hdfs.sh
 create mode 100644 continuous_integration/run_tests.cmd
 create mode 100644 continuous_integration/run_with_env.cmd
 create mode 100644 continuous_integration/setup_conda_environment.cmd
 create mode 100644 dev-requirements.txt
 create mode 100644 distributed/_version.py
 create mode 100644 distributed/bokeh/core.py
 create mode 100644 distributed/bokeh/scheduler.py
 create mode 100644 distributed/bokeh/tests/test_scheduler_bokeh.py
 create mode 100644 distributed/bokeh/tests/test_worker_bokeh.py
 create mode 100644 distributed/bokeh/worker.py
 create mode 100644 distributed/channels.py
 create mode 100644 distributed/cli/tests/test_cli_utils.py
 create mode 100644 distributed/cli/tests/test_dask_worker.py
 delete mode 100644 distributed/cli/tests/test_dworker.py
 create mode 100644 distributed/comm/__init__.py
 create mode 100644 distributed/comm/addressing.py
 create mode 100644 distributed/comm/core.py
 create mode 100644 distributed/comm/inproc.py
 create mode 100644 distributed/comm/registry.py
 create mode 100644 distributed/comm/tcp.py
 create mode 100644 distributed/comm/tests/test_comms.py
 create mode 100644 distributed/comm/utils.py
 create mode 100644 distributed/comm/zmq.py
 create mode 100644 distributed/comm/zmqimpl.py
 create mode 100644 distributed/counter.py
 create mode 100755 distributed/metrics.py
 create mode 100644 distributed/protocol/keras.py
 create mode 100644 distributed/protocol/tests/test_keras.py
 create mode 100644 distributed/protocol/tests/test_pandas.py
 create mode 100644 distributed/publish.py
 create mode 100644 distributed/recreate_exceptions.py
 create mode 100644 distributed/stealing.py
 delete mode 100644 distributed/sync.py
 create mode 100644 distributed/system_monitor.py
 create mode 100644 distributed/tests/py3_test_client.py
 create mode 100644 distributed/tests/test_as_completed.py
 create mode 100644 distributed/tests/test_channels.py
 create mode 100644 distributed/tests/test_counter.py
 create mode 100644 distributed/tests/test_metrics.py
 create mode 100644 distributed/tests/test_publish.py
 create mode 100644 distributed/tests/test_resources.py
 delete mode 100644 distributed/tests/test_sync.py
 create mode 100644 distributed/tests/test_system_monitor.py
 mode change 100644 => 100755 distributed/tests/test_utils_test.py
 create mode 100644 docs/source/changelog.rst
 create mode 100644 docs/source/channels.rst
 create mode 100644 docs/source/communications.rst
 create mode 100644 docs/source/images/worker-dep-state.dot
 create mode 100644 docs/source/images/worker-dep-state.svg
 create mode 100644 docs/source/images/worker-task-state.dot
 create mode 100644 docs/source/images/worker-task-state.svg
 create mode 100644 docs/source/limitations.rst
 create mode 100644 docs/source/resources.rst
 delete mode 100644 release-notes.md
 create mode 100644 setup.cfg
 create mode 100644 versioneer.py

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



More information about the Python-modules-commits mailing list