Your message dated Mon, 27 Aug 2018 13:04:48 +0000
with message-id <e1fuhck-000awo...@fasolo.debian.org>
and subject line Bug#903523: fixed in jaraco.itertools 2.0.1-2
has caused the Debian Bug report #903523,
regarding jaraco.itertools FTBFS with Python 3.7 as supported version
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.)


-- 
903523: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=903523
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: jaraco.itertools
Version: 2.0.1-1
Severity: serious
Tags: ftbfs

https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/jaraco.itertools.html

...
I: pybuild base:217: cd 
/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build; 
python3.7 -m pytest jaraco/
============================= test session starts ==============================
platform linux -- Python 3.7.0, pytest-3.6.2, py-1.5.3, pluggy-0.6.0
rootdir: 
/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build, 
inifile: pytest.ini
collected 32 items

jaraco/itertools.py ..FF......FF.............F......                     [100%]

=================================== FAILURES ===================================
___________________ [doctest] jaraco.itertools.FetchingQueue ___________________
146 
147     A FIFO Queue that is supplied with a function to inject more into
148     the queue if it is empty.
149 
150     >>> values = iter(range(10))
151     >>> get_value = lambda: globals()['q'].enqueue(next(values))
152     >>> q = FetchingQueue(get_value)
153     >>> [x for x in q] == list(range(10))
UNEXPECTED EXCEPTION: RuntimeError('generator raised StopIteration')
Traceback (most recent call last):

  File 
"/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py",
 line 175, in __iter__
    yield next(self)

  File 
"/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py",
 line 169, in __next__
    self._fetcher()

  File "<doctest jaraco.itertools.FetchingQueue[1]>", line 1, in <lambda>

StopIteration


The above exception was the direct cause of the following exception:


Traceback (most recent call last):

  File "/usr/lib/python3.7/doctest.py", line 1329, in __run
    compileflags, 1), test.globs)

  File "<doctest jaraco.itertools.FetchingQueue[3]>", line 1, in <module>

  File "<doctest jaraco.itertools.FetchingQueue[3]>", line 1, in <listcomp>

RuntimeError: generator raised StopIteration

/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py:153:
 UnexpectedException
___________________ [doctest] jaraco.itertools.GroupbySaved ____________________
073     element in the sequence.
074 
075     >>> truthsplit = GroupbySaved(['Test', '', 30, None], bool)
076     >>> truthsplit['x']
077     Traceback (most recent call last):
078     ...
079     KeyError: 'x'
080     >>> true_items = truthsplit[True]
081     >>> false_items = truthsplit[False]
082     >>> tuple(iter(false_items))
UNEXPECTED EXCEPTION: RuntimeError('generator raised StopIteration')
Traceback (most recent call last):

  File 
"/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py",
 line 175, in __iter__
    yield next(self)

  File 
"/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py",
 line 169, in __next__
    self._fetcher()

  File 
"/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py",
 line 115, in __fetch__
    item = next(self.sequence)

StopIteration


The above exception was the direct cause of the following exception:


Traceback (most recent call last):

  File "/usr/lib/python3.7/doctest.py", line 1329, in __run
    compileflags, 1), test.globs)

  File "<doctest jaraco.itertools.GroupbySaved[4]>", line 1, in <module>

RuntimeError: generator raised StopIteration

/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py:82:
 UnexpectedException
______________________ [doctest] jaraco.itertools.bisect _______________________
046 
047     Split a sequence into two sequences:  the first is elements that
048     return False for func(element) and the second for True for
049     func(element).
050     By default, func is ``bool``, so uses the truth value of the object.
051 
052     >>> is_odd = lambda n: n%2
053     >>> even, odd = bisect(range(5), is_odd)
054     >>> list(odd)
UNEXPECTED EXCEPTION: RuntimeError('generator raised StopIteration')
Traceback (most recent call last):

  File 
"/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py",
 line 175, in __iter__
    yield next(self)

  File 
"/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py",
 line 169, in __next__
    self._fetcher()

  File 
"/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py",
 line 115, in __fetch__
    item = next(self.sequence)

StopIteration


The above exception was the direct cause of the following exception:


Traceback (most recent call last):

  File "/usr/lib/python3.7/doctest.py", line 1329, in __run
    compileflags, 1), test.globs)

  File "<doctest jaraco.itertools.bisect[2]>", line 1, in <module>

RuntimeError: generator raised StopIteration

/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py:54:
 UnexpectedException
____________________ [doctest] jaraco.itertools.every_other ____________________
551 
552     Yield every other item from the iterable
553 
554     >>> ' '.join(every_other('abcdefg'))
UNEXPECTED EXCEPTION: RuntimeError('generator raised StopIteration')
Traceback (most recent call last):

  File 
"/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py",
 line 560, in every_other
    next(items)

StopIteration


The above exception was the direct cause of the following exception:


Traceback (most recent call last):

  File "/usr/lib/python3.7/doctest.py", line 1329, in __run
    compileflags, 1), test.globs)

  File "<doctest jaraco.itertools.every_other[0]>", line 1, in <module>

RuntimeError: generator raised StopIteration

/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py:554:
 UnexpectedException
_________________ [doctest] jaraco.itertools.remove_duplicates _________________
563 
564     Given an iterable with items that may come in as sequential duplicates,
565     remove those duplicates.
566 
567     Unlike unique_justseen, this function does not remove triplicates.
568 
569     >>> ' '.join(remove_duplicates('abcaabbccaaabbbcccbcbc'))
UNEXPECTED EXCEPTION: RuntimeError('generator raised StopIteration')
Traceback (most recent call last):

  File 
"/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py",
 line 560, in every_other
    next(items)

StopIteration


The above exception was the direct cause of the following exception:


Traceback (most recent call last):

  File "/usr/lib/python3.7/doctest.py", line 1329, in __run
    compileflags, 1), test.globs)

  File "<doctest jaraco.itertools.remove_duplicates[0]>", line 1, in <module>

RuntimeError: generator raised StopIteration

/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build/jaraco/itertools.py:569:
 UnexpectedException
===================== 5 failed, 27 passed in 0.16 seconds ======================
E: pybuild pybuild:336: test: plugin distutils failed with: exit code=1: cd 
/build/1st/jaraco.itertools-2.0.1/.pybuild/cpython3_3.7_jaraco.itertools/build; 
python3.7 -m pytest jaraco/
dh_auto_test: pybuild --test --test-pytest -i python{version} -p "3.7 3.6" 
returned exit code 13
make: *** [debian/rules:9: build] Error 13

--- End Message ---
--- Begin Message ---
Source: jaraco.itertools
Source-Version: 2.0.1-2

We believe that the bug you reported is fixed in the latest version of
jaraco.itertools, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 903...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ondřej Nový <on...@debian.org> (supplier of updated jaraco.itertools package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Mon, 27 Aug 2018 14:46:47 +0200
Source: jaraco.itertools
Binary: python-jaraco.itertools python3-jaraco.itertools
Architecture: source all
Version: 2.0.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
<python-modules-t...@lists.alioth.debian.org>
Changed-By: Ondřej Nový <on...@debian.org>
Description:
 python-jaraco.itertools - Tools for working with iterables (Python 2)
 python3-jaraco.itertools - Tools for working with iterables (Python 3)
Closes: 903523
Changes:
 jaraco.itertools (2.0.1-2) unstable; urgency=medium
 .
   * Team upload.
   * d/control: Set Vcs-* to salsa.debian.org
   * d/copyright: Use https protocol in Format field
   * Convert git repository from git-dpm to gbp layout
   * Add Python 3.7 support (Closes: #903523)
   * Bump debhelper compat level to 11
   * Bump standards version to 4.2.1 (no changes)
Checksums-Sha1:
 3457ccc2e0ecb60245f63b65bcf82408f00368c7 2475 jaraco.itertools_2.0.1-2.dsc
 f997ca8cfe6b5b7c64864e33fb86de898cef03ad 3376 
jaraco.itertools_2.0.1-2.debian.tar.xz
 e7ce00c58daf19f3b51b1bc2ddb3477d8ac33911 7666 
jaraco.itertools_2.0.1-2_amd64.buildinfo
 5283c125eecc05d65c5d6a2318ae2de721e62370 11912 
python-jaraco.itertools_2.0.1-2_all.deb
 9c9434bcc753e8388cf558f684266d9e7c5e19f2 12016 
python3-jaraco.itertools_2.0.1-2_all.deb
Checksums-Sha256:
 c70b6a65ab519732253ff9a390f78207a8c355f2d70dc88777917c6c218a1fb5 2475 
jaraco.itertools_2.0.1-2.dsc
 b11d2c332266515138536caa0052db3b434c05e95745ecde8636f91bf52ed861 3376 
jaraco.itertools_2.0.1-2.debian.tar.xz
 957a0c597330ca8d2e60be26f2fa4160fda78a7f1d68166f5b4d2b8bbb7db5cb 7666 
jaraco.itertools_2.0.1-2_amd64.buildinfo
 c808f705b47ecd4f5868ed079852bfcc7bc360042ffc41fd249c95704200bea2 11912 
python-jaraco.itertools_2.0.1-2_all.deb
 c0afceb43a0b7d68c8b7cd5eb9e2a06f259051af1acb3a26838b36978604fc9f 12016 
python3-jaraco.itertools_2.0.1-2_all.deb
Files:
 7851e2b27fa8b403b54d403496a99f0d 2475 python optional 
jaraco.itertools_2.0.1-2.dsc
 9f77d9ab0417f262a3154fe3e82baacf 3376 python optional 
jaraco.itertools_2.0.1-2.debian.tar.xz
 8742937612edcb373c609413c76089f1 7666 python optional 
jaraco.itertools_2.0.1-2_amd64.buildinfo
 74ef24d6b4996047e3a4ef72a021aa54 11912 python optional 
python-jaraco.itertools_2.0.1-2_all.deb
 5096639dbbe6a2a9c1a2f1ae9c5de3d2 12016 python optional 
python3-jaraco.itertools_2.0.1-2_all.deb

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEPZg8UuuFmAxGpWCQNXMSVZ0eBksFAluD84UACgkQNXMSVZ0e
Bkt+1xAAggK2c8R4j84vRx/apRzNVjvNANITWA1KWwpnQp9tKiGfL3E6DXSktSZO
koaAPr7DdNiWgXpOaGl0ZTEmQ3nRocsX1XoHublIoaw5aEdpYYloMYzAG1JRX7Il
NrltKMO56mroTiYxvrbfHr3U7X0R2e46cpWLJ9vrafUaGJtSRNtJEnF06iPLbtkW
d8+OyfT3GnD5zX1ANcP2NLV62yrcDekilJx53XXCdgqMf7oid8BLShEoIBJt30d+
SVuiESU0roVoZwKzyPzJj1IjVP72ZcQF+QHVhUHaZpclnhZGFexS+yw4g3WTqPVP
23wl/xNulB6ws5E64mdZ91O8JwNCWpArfp5JhAD3HKfPm5hqUtGCi8Skn9MBjyEY
T3xeqp0l72EAd68UsFOzmKXj2bXLm9gsOYL6HTzRocwpnBxU3jAYsRDl/xHSHxMk
h9ISuP/nUq4E22pF8NKgnGXyp8Ze11XH2RkckDw4TJuQxg1vs0VAQPpk+hOtR7ts
zxJLTrt7prylNLbScFCH86r4PLudumr3Hpd7a9hoeHyaBL+dkgXjUHJSrnTXrTeK
75lha2EuxnMRhM7ig0e2x79ZQgz4OWvKSR80xVXV7o3jxePQGMwm8LyEeDaWwlNh
yodPbp/3FVNelCKIGZVju59nRZ1kj9j3jccMfh1sgYmuCUOanNM=
=qZ7+
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to