[Python-modules-commits] [dask.distributed] branch upstream updated (e344b30 -> e89c7a7)
Diane Trout
diane at moszumanska.debian.org
Fri Dec 8 16:26:41 UTC 2017
This is an automated email from the git hooks/post-receive script.
diane pushed a change to branch upstream
in repository dask.distributed.
from e344b30 New upstream version 1.18.0+ds.1
new e89c7a7 New upstream version 1.19.2+ds.1
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 | 3 +-
LICENSE.txt | 4 +-
continuous_integration/setup_conda_environment.cmd | 2 +-
continuous_integration/travis/install.sh | 3 +-
distributed/_concurrent_futures_thread.py | 161 +++++
distributed/_ipython_utils.py | 13 +-
distributed/asyncio.py | 11 +-
distributed/batched.py | 12 +-
distributed/bokeh/__init__.py | 4 +-
distributed/bokeh/background/server_lifecycle.py | 4 +-
distributed/bokeh/components.py | 302 ++++++++-
distributed/bokeh/core.py | 19 -
distributed/bokeh/scheduler.py | 114 ++--
distributed/bokeh/tests/test_components.py | 32 +-
distributed/bokeh/tests/test_scheduler_bokeh.py | 36 +-
distributed/bokeh/tests/test_task_stream.py | 5 +-
distributed/bokeh/tests/test_worker_bokeh.py | 11 +-
distributed/bokeh/tests/test_worker_monitor.py | 2 -
distributed/bokeh/worker.py | 92 +--
distributed/cli/dask_mpi.py | 100 +++
distributed/cli/dask_scheduler.py | 3 +-
distributed/cli/dask_ssh.py | 19 +-
distributed/cli/dask_worker.py | 106 +--
distributed/cli/dcluster.py | 1 -
distributed/cli/dscheduler.py | 1 -
distributed/cli/dworker.py | 1 -
distributed/cli/tests/test_dask_mpi.py | 70 ++
distributed/cli/tests/test_dask_scheduler.py | 28 +-
distributed/cli/tests/test_dask_worker.py | 71 +-
distributed/cli/tests/test_tls_cli.py | 4 +-
distributed/cli/utils.py | 1 -
distributed/client.py | 556 ++++++++++------
distributed/comm/addressing.py | 15 +-
distributed/comm/inproc.py | 6 +-
distributed/comm/tcp.py | 18 +-
distributed/comm/tests/test_comms.py | 45 +-
distributed/compatibility.py | 7 +-
distributed/config.py | 25 +-
distributed/config.yaml | 14 +
distributed/core.py | 56 +-
distributed/deploy/adaptive.py | 152 ++++-
distributed/deploy/local.py | 23 +-
distributed/deploy/ssh.py | 8 +-
distributed/deploy/tests/test_adaptive.py | 20 +-
distributed/deploy/tests/test_local.py | 81 ++-
distributed/deploy/tests/test_ssh.py | 9 +-
distributed/deploy/utils_test.py | 2 +-
distributed/diagnostics/eventstream.py | 1 +
distributed/diagnostics/plugin.py | 7 +-
distributed/diagnostics/progress.py | 45 +-
distributed/diagnostics/progress_stream.py | 1 +
distributed/diagnostics/progressbar.py | 62 +-
distributed/diagnostics/scheduler.py | 3 +-
distributed/diagnostics/tests/test_eventstream.py | 11 +-
distributed/diagnostics/tests/test_progress.py | 46 +-
.../diagnostics/tests/test_progress_stream.py | 13 +-
distributed/diagnostics/tests/test_progressbar.py | 12 +-
.../tests/test_scheduler_diagnostics.py | 8 +-
distributed/diagnostics/tests/test_widgets.py | 16 +-
distributed/hdfs.py | 2 +-
distributed/http/core.py | 4 +-
distributed/http/scheduler.py | 10 +-
distributed/http/tests/test_scheduler_http.py | 16 +-
distributed/http/tests/test_worker_http.py | 17 +-
distributed/http/worker.py | 19 +-
distributed/nanny.py | 98 ++-
distributed/process.py | 172 +++--
distributed/profile.py | 226 +++++++
distributed/protocol/__init__.py | 6 +-
distributed/protocol/compression.py | 11 +-
distributed/protocol/core.py | 2 +-
distributed/protocol/keras.py | 2 +-
distributed/protocol/pickle.py | 2 +-
distributed/protocol/serialize.py | 2 +
distributed/protocol/tests/test_h5py.py | 6 +-
distributed/protocol/tests/test_keras.py | 3 -
distributed/protocol/tests/test_netcdf4.py | 4 +-
distributed/protocol/tests/test_numpy.py | 80 ++-
distributed/protocol/tests/test_pandas.py | 9 +-
distributed/protocol/tests/test_pickle.py | 1 +
distributed/protocol/tests/test_protocol.py | 11 +-
distributed/protocol/tests/test_protocol_utils.py | 1 +
distributed/protocol/tests/test_serialize.py | 8 +-
distributed/protocol/tests/test_sparse.py | 5 +-
distributed/protocol/utils.py | 2 +-
distributed/publish.py | 1 +
distributed/queues.py | 15 +-
distributed/recreate_exceptions.py | 8 +-
distributed/scheduler.py | 519 ++++++++++-----
distributed/sizeof.py | 3 +-
distributed/stealing.py | 31 +-
distributed/system_monitor.py | 63 +-
distributed/tests/make_tls_certs.py | 35 +-
distributed/tests/py3_test_asyncio.py | 9 +-
distributed/tests/py3_test_client.py | 31 +-
distributed/tests/py3_test_utils_tst.py | 2 +-
distributed/tests/test_as_completed.py | 44 +-
distributed/tests/test_asyncio.py | 2 +-
distributed/tests/test_asyncprocess.py | 149 ++++-
distributed/tests/test_batched.py | 40 +-
distributed/tests/test_client.py | 508 ++++++++++----
distributed/tests/test_client_executor.py | 13 +-
distributed/tests/test_collections.py | 22 +-
distributed/tests/test_compatibility.py | 1 +
distributed/tests/test_config.py | 31 +-
distributed/tests/test_core.py | 40 +-
distributed/tests/test_counter.py | 5 +-
distributed/tests/test_hdfs.py | 22 +-
distributed/tests/test_ipython.py | 42 +-
distributed/tests/test_joblib.py | 9 +-
distributed/tests/test_metrics.py | 3 +-
distributed/tests/test_nanny.py | 83 ++-
distributed/tests/test_preload.py | 3 +-
distributed/tests/test_profile.py | 108 +++
distributed/tests/test_publish.py | 19 +-
distributed/tests/test_queues.py | 12 +-
distributed/tests/test_resources.py | 70 +-
distributed/tests/test_scheduler.py | 162 +++--
distributed/tests/test_security.py | 58 +-
distributed/tests/test_sizeof.py | 6 +-
distributed/tests/test_steal.py | 204 +++---
distributed/tests/test_stress.py | 69 +-
distributed/tests/test_submit_cli.py | 6 +-
distributed/tests/test_submit_remote_client.py | 4 +-
distributed/tests/test_threadpoolexecutor.py | 22 +
distributed/tests/test_tls_functional.py | 9 +-
distributed/tests/test_utils.py | 29 +-
distributed/tests/test_utils_comm.py | 14 +-
distributed/tests/test_utils_test.py | 14 +-
distributed/tests/test_variable.py | 15 +-
distributed/tests/test_worker.py | 301 +++++++--
distributed/tests/test_worker_client.py | 63 +-
distributed/tests/test_worker_failure.py | 72 +-
distributed/threadpoolexecutor.py | 17 +-
distributed/utils.py | 257 ++++++--
distributed/utils_comm.py | 1 +
distributed/utils_test.py | 236 +++++--
distributed/variable.py | 10 +-
distributed/versions.py | 2 +-
distributed/worker.py | 726 +++++++++++++++------
distributed/worker_client.py | 5 +-
docs/source/adaptive.rst | 45 +-
docs/source/api.rst | 15 +-
docs/source/asynchronous.rst | 19 +-
docs/source/changelog.rst | 73 +++
docs/source/client.rst | 16 +-
docs/source/conf.py | 4 +-
docs/source/develop.rst | 2 +-
docs/source/diagnosing-performance.rst | 125 ++++
docs/source/faq.rst | 2 +-
docs/source/index.rst | 1 +
docs/source/install.rst | 2 +-
docs/source/ipython.rst | 6 +-
docs/source/quickstart.rst | 2 +-
docs/source/resources.rst | 25 +
docs/source/setup.rst | 26 +
docs/source/submitting-applications.rst | 2 +-
docs/source/worker.rst | 129 ++--
requirements.txt | 4 +-
setup.cfg | 8 +-
setup.py | 1 +
161 files changed, 5842 insertions(+), 2126 deletions(-)
create mode 100644 distributed/_concurrent_futures_thread.py
create mode 100644 distributed/cli/dask_mpi.py
create mode 100644 distributed/cli/tests/test_dask_mpi.py
create mode 100644 distributed/profile.py
create mode 100644 distributed/tests/test_profile.py
create mode 100644 docs/source/diagnosing-performance.rst
--
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