Your message dated Sat, 17 Jul 2021 14:11:33 +0200
with message-id 
<CAM8zJQsp7chrzaSRKRSBmqh=nzwoadxrgvdeoxs5vsqng_e...@mail.gmail.com>
and subject line Re: Bug#991202: unblock: dask.distributed/2021.01.0+ds.1-2.1
has caused the Debian Bug report #991202,
regarding unblock: dask.distributed/2021.01.0+ds.1-2.1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
991202: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=991202
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian....@packages.debian.org
Usertags: unblock

Please unblock package dask.distributed

  * Backport upstream fix removing tests that fail under some
    circumstances. (Closes: #987816)
  * python-distributed-doc: Fix broken symlink to html5shiv.min.js,
    dh_link needs absolute paths. (Closes: #988675)
diff -Nru dask.distributed-2021.01.0+ds.1/debian/changelog 
dask.distributed-2021.01.0+ds.1/debian/changelog
--- dask.distributed-2021.01.0+ds.1/debian/changelog    2021-02-01 
22:08:19.000000000 +0200
+++ dask.distributed-2021.01.0+ds.1/debian/changelog    2021-07-13 
19:19:56.000000000 +0300
@@ -1,3 +1,13 @@
+dask.distributed (2021.01.0+ds.1-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Backport upstream fix removing tests that fail under some
+    circumstances. (Closes: #987816)
+  * python-distributed-doc: Fix broken symlink to html5shiv.min.js,
+    dh_link needs absolute paths. (Closes: #988675)
+
+ -- Adrian Bunk <b...@debian.org>  Tue, 13 Jul 2021 19:19:56 +0300
+
 dask.distributed (2021.01.0+ds.1-2) unstable; urgency=medium
 
   * Add fall-back-to-ipv6-localhost.patch to work around ipv6 networking
diff -Nru 
dask.distributed-2021.01.0+ds.1/debian/patches/0001-Remove-tests-for-process_time-and-thread_time-4895.patch
 
dask.distributed-2021.01.0+ds.1/debian/patches/0001-Remove-tests-for-process_time-and-thread_time-4895.patch
--- 
dask.distributed-2021.01.0+ds.1/debian/patches/0001-Remove-tests-for-process_time-and-thread_time-4895.patch
        1970-01-01 02:00:00.000000000 +0200
+++ 
dask.distributed-2021.01.0+ds.1/debian/patches/0001-Remove-tests-for-process_time-and-thread_time-4895.patch
        2021-07-13 19:19:56.000000000 +0300
@@ -0,0 +1,73 @@
+From 668f3f1d38c27277448af6f5aa88741cd1d33f3b Mon Sep 17 00:00:00 2001
+From: James Bourbeau <jrbourb...@users.noreply.github.com>
+Date: Wed, 9 Jun 2021 08:57:53 -0500
+Subject: Remove tests for `process_time` and `thread_time` (#4895)
+
+---
+ distributed/tests/test_metrics.py | 46 -------------------------------
+ 1 file changed, 46 deletions(-)
+
+diff --git a/distributed/tests/test_metrics.py 
b/distributed/tests/test_metrics.py
+index 3a27e638..58c33266 100644
+--- a/distributed/tests/test_metrics.py
++++ b/distributed/tests/test_metrics.py
+@@ -1,9 +1,6 @@
+-import sys
+-import threading
+ import time
+ 
+ from distributed import metrics
+-from distributed.utils_test import run_for
+ 
+ 
+ def test_wall_clock():
+@@ -18,46 +15,3 @@ def test_wall_clock():
+         assert any(lambda d: 0.0 < d < 0.0001 for d in deltas), deltas
+         # Close to time.time()
+         assert t - 0.5 < samples[0] < t + 0.5
+-
+-
+-def test_process_time():
+-    start = metrics.process_time()
+-    run_for(0.05)
+-    dt = metrics.process_time() - start
+-    assert 0.03 <= dt <= 0.2
+-
+-    # All threads counted
+-    t = threading.Thread(target=run_for, args=(0.1,))
+-    start = metrics.process_time()
+-    t.start()
+-    t.join()
+-    dt = metrics.process_time() - start
+-    assert dt >= 0.05
+-
+-    # Sleep time not counted
+-    start = metrics.process_time()
+-    time.sleep(0.1)
+-    dt = metrics.process_time() - start
+-    assert dt <= 0.05
+-
+-
+-def test_thread_time():
+-    start = metrics.thread_time()
+-    run_for(0.05)
+-    dt = metrics.thread_time() - start
+-    assert 0.03 <= dt <= 0.2
+-
+-    # Sleep time not counted
+-    start = metrics.thread_time()
+-    time.sleep(0.1)
+-    dt = metrics.thread_time() - start
+-    assert dt <= 0.05
+-
+-    if sys.platform == "linux":
+-        # Always per-thread on Linux
+-        t = threading.Thread(target=run_for, args=(0.1,))
+-        start = metrics.thread_time()
+-        t.start()
+-        t.join()
+-        dt = metrics.thread_time() - start
+-        assert dt <= 0.05
+-- 
+2.20.1
+
diff -Nru dask.distributed-2021.01.0+ds.1/debian/patches/series 
dask.distributed-2021.01.0+ds.1/debian/patches/series
--- dask.distributed-2021.01.0+ds.1/debian/patches/series       2021-02-01 
21:51:15.000000000 +0200
+++ dask.distributed-2021.01.0+ds.1/debian/patches/series       2021-07-13 
19:19:56.000000000 +0300
@@ -7,3 +7,4 @@
 use-local-favicon.patch
 mark-tests-require-installation.patch
 fall-back-to-ipv6-localhost.patch
+0001-Remove-tests-for-process_time-and-thread_time-4895.patch
diff -Nru dask.distributed-2021.01.0+ds.1/debian/python-distributed-doc.links 
dask.distributed-2021.01.0+ds.1/debian/python-distributed-doc.links
--- dask.distributed-2021.01.0+ds.1/debian/python-distributed-doc.links 
2021-01-17 05:54:55.000000000 +0200
+++ dask.distributed-2021.01.0+ds.1/debian/python-distributed-doc.links 
2021-07-13 19:19:56.000000000 +0300
@@ -1 +1 @@
-../../../../sphinx_rtd_theme/static/js/html5shiv.min.js 
usr/share/doc/python-distributed-doc/html/_static/js/html5shiv.min.js
+/usr/share/sphinx_rtd_theme/static/js/html5shiv.min.js 
usr/share/doc/python-distributed-doc/html/_static/js/html5shiv.min.js

--- End Message ---
--- Begin Message ---
Unblocked.

--- End Message ---

Reply via email to