Your message dated Sun, 17 Dec 2023 08:49:37 +0000
with message-id <e1remq9-00hqz3...@fasolo.debian.org>
and subject line Bug#1058413: fixed in python-pykka 4.0.1-1
has caused the Debian Bug report #1058413,
regarding python-pykka: FTBFS: dh_auto_test: error: pybuild --test 
--test-pytest -i python{version} -p "3.12 3.11" returned exit code 13
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.)


-- 
1058413: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1058413
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: python-pykka
Version: 4.0.0-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20231212 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
>  debian/rules build
> dh build --with python3,sphinxdoc --buildsystem=pybuild
>    dh_update_autotools_config -O--buildsystem=pybuild
>    dh_autoreconf -O--buildsystem=pybuild
>    dh_auto_configure -O--buildsystem=pybuild
>    dh_auto_build -O--buildsystem=pybuild
> I: pybuild plugin_pyproject:110: Building wheel for python3.12 with "build" 
> module
> I: pybuild base:310: python3.12 -m build --skip-dependency-check 
> --no-isolation --wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pykka 
> * Building wheel...
> Successfully built pykka-4.0.0-py3-none-any.whl
> I: pybuild plugin_pyproject:122: Unpacking wheel built for python3.12 with 
> "installer" module
> I: pybuild plugin_pyproject:110: Building wheel for python3.11 with "build" 
> module
> I: pybuild base:310: python3.11 -m build --skip-dependency-check 
> --no-isolation --wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pykka 
> * Building wheel...
> Successfully built pykka-4.0.0-py3-none-any.whl
> I: pybuild plugin_pyproject:122: Unpacking wheel built for python3.11 with 
> "installer" module
>    dh_auto_test -O--buildsystem=pybuild
> I: pybuild base:310: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pykka/build; 
> python3.12 -m pytest tests
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.12.1, pytest-7.4.3, pluggy-1.3.0
> rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pykka/build
> plugins: mock-3.12.0
> collected 148 items
> 
> tests/test_actor.py ...................                                  [ 
> 12%]
> tests/test_future.py .......F................                            [ 
> 29%]
> tests/test_logging.py .......                                            [ 
> 33%]
> tests/test_ref.py .......................                                [ 
> 49%]
> tests/test_registry.py ............                                      [ 
> 57%]
> tests/proxy/test_attribute_access.py ........                            [ 
> 62%]
> tests/proxy/test_dynamic_method_calls.py ..                              [ 
> 64%]
> tests/proxy/test_mocking.py ...                                          [ 
> 66%]
> tests/proxy/test_proxy.py .................                              [ 
> 77%]
> tests/proxy/test_static_method_calls.py ........                         [ 
> 83%]
> tests/proxy/test_traversable.py ......                                   [ 
> 87%]
> tests/proxy/test_typed_proxy.py ....                                     [ 
> 89%]
> tests/test_envelope.py .                                                 [ 
> 90%]
> tests/test_future.py ...                                                 [ 
> 92%]
> tests/test_logging.py .                                                  [ 
> 93%]
> tests/test_messages.py ....                                              [ 
> 95%]
> tests/test_registry.py ..                                                [ 
> 97%]
> tests/test_threading_actor.py ...                                        [ 
> 99%]
> tests/proxy/test_traversable.py .                                        
> [100%]
> 
> =================================== FAILURES 
> ===================================
> ______________ test_future_supports_yield_from_syntax[threading] 
> _______________
> 
> future = <pykka.Future>
> 
>     def test_future_supports_yield_from_syntax(
>         future: Future[int],
>     ) -> None:
>         def get_value() -> Generator[None, None, int]:
>             val = yield from future
>             return val
>     
>         future.set(1)
> >       assert run_async(get_value()) == 1
> 
> tests/test_future.py:153: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_future.py:20: in run_async
>     f = asyncio.ensure_future(coroutine, loop=loop)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> coro_or_future = <generator object 
> test_future_supports_yield_from_syntax.<locals>.get_value at 0x7fc4d043bd30>
> 
>     def ensure_future(coro_or_future, *, loop=None):
>         """Wrap a coroutine or an awaitable in a future.
>     
>         If the argument is a Future, it is returned directly.
>         """
>         if futures.isfuture(coro_or_future):
>             if loop is not None and loop is not 
> futures._get_loop(coro_or_future):
>                 raise ValueError('The future belongs to a different loop than 
> '
>                                 'the one specified as the loop argument')
>             return coro_or_future
>         should_close = True
>         if not coroutines.iscoroutine(coro_or_future):
>             if inspect.isawaitable(coro_or_future):
>                 async def _wrap_awaitable(awaitable):
>                     return await awaitable
>     
>                 coro_or_future = _wrap_awaitable(coro_or_future)
>                 should_close = False
>             else:
> >               raise TypeError('An asyncio.Future, a coroutine or an 
> > awaitable '
>                                 'is required')
> E               TypeError: An asyncio.Future, a coroutine or an awaitable is 
> required
> 
> /usr/lib/python3.12/asyncio/tasks.py:689: TypeError
> =============================== warnings summary 
> ===============================
> tests/test_future.py::test_future_supports_await_syntax[threading]
>   
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pykka/build/tests/test_future.py:19: 
> DeprecationWarning: There is no current event loop
>     loop = asyncio.get_event_loop()
> 
> -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
> =========================== short test summary info 
> ============================
> FAILED tests/test_future.py::test_future_supports_yield_from_syntax[threading]
> =================== 1 failed, 147 passed, 1 warning in 0.68s 
> ===================
> E: pybuild pybuild:395: test: plugin pyproject failed with: exit code=1: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pykka/build; python3.12 -m pytest 
> tests
> I: pybuild base:310: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pykka/build; 
> python3.11 -m pytest tests
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.11.7, pytest-7.4.3, pluggy-1.3.0
> rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pykka/build
> plugins: mock-3.12.0
> collected 148 items
> 
> tests/test_actor.py ...................                                  [ 
> 12%]
> tests/test_future.py ........................                            [ 
> 29%]
> tests/test_logging.py .......                                            [ 
> 33%]
> tests/test_ref.py .......................                                [ 
> 49%]
> tests/test_registry.py ............                                      [ 
> 57%]
> tests/proxy/test_attribute_access.py ........                            [ 
> 62%]
> tests/proxy/test_dynamic_method_calls.py ..                              [ 
> 64%]
> tests/proxy/test_mocking.py ...                                          [ 
> 66%]
> tests/proxy/test_proxy.py .................                              [ 
> 77%]
> tests/proxy/test_static_method_calls.py ........                         [ 
> 83%]
> tests/proxy/test_traversable.py ......                                   [ 
> 87%]
> tests/proxy/test_typed_proxy.py ....                                     [ 
> 89%]
> tests/test_envelope.py .                                                 [ 
> 90%]
> tests/test_future.py ...                                                 [ 
> 92%]
> tests/test_logging.py .                                                  [ 
> 93%]
> tests/test_messages.py ....                                              [ 
> 95%]
> tests/test_registry.py ..                                                [ 
> 97%]
> tests/test_threading_actor.py ...                                        [ 
> 99%]
> tests/proxy/test_traversable.py .                                        
> [100%]
> 
> ============================= 148 passed in 0.89s 
> ==============================
> dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.12 
> 3.11" returned exit code 13


The full build log is available from:
http://qa-logs.debian.net/2023/12/12/python-pykka_4.0.0-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20231212;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20231212&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.

--- End Message ---
--- Begin Message ---
Source: python-pykka
Source-Version: 4.0.1-1
Done: Stein Magnus Jodal <jo...@debian.org>

We believe that the bug you reported is fixed in the latest version of
python-pykka, 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 1058...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stein Magnus Jodal <jo...@debian.org> (supplier of updated python-pykka 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: Sun, 17 Dec 2023 09:30:05 +0100
Source: python-pykka
Built-For-Profiles: noudeb
Architecture: source
Version: 4.0.1-1
Distribution: unstable
Urgency: medium
Maintainer: Stein Magnus Jodal <jo...@debian.org>
Changed-By: Stein Magnus Jodal <jo...@debian.org>
Closes: 1058413
Changes:
 python-pykka (4.0.1-1) unstable; urgency=medium
 .
   * New upstream release supporting Python 3.12 (Closes: #1058413)
   * Bump Standards-Version to 4.6.2, no changes needed.
Checksums-Sha1:
 254792c670d36c9c5410c0091c7e1dac16575a1b 2165 python-pykka_4.0.1-1.dsc
 4356b2f6606c4c45cc1bc354ad93487ab85b6567 48967 python-pykka_4.0.1.orig.tar.gz
 9d61fb94092e7924eef2355266215f6bc838fe77 5264 
python-pykka_4.0.1-1.debian.tar.xz
 659513763cb99b2fee0418e3d12d212b36e67076 9738 
python-pykka_4.0.1-1_source.buildinfo
Checksums-Sha256:
 ae5be17699b4a1474cd5726f997a6427a20bc93e985f59b5d2afcc6a129c98c4 2165 
python-pykka_4.0.1-1.dsc
 cb499c0b099412ee2200cb3ca51740c3834beb35bcd172b7daa44ee76ac165f2 48967 
python-pykka_4.0.1.orig.tar.gz
 1200f505da0808a0c7de4e54cb5b7295c94b7abd869480f2fdb5c9dbb93f6d22 5264 
python-pykka_4.0.1-1.debian.tar.xz
 dd1b54b4def5f4b4531d8e2b47338b6402c6d1919312c069287d5db0ab86692a 9738 
python-pykka_4.0.1-1_source.buildinfo
Files:
 e35559fd4e5c9ed4b49fd44c394df612 2165 python optional python-pykka_4.0.1-1.dsc
 9cacbb3c0b598c536addb804a93a2374 48967 python optional 
python-pykka_4.0.1.orig.tar.gz
 03c0ccf15ce0b7cbbdb86e38be01f1eb 5264 python optional 
python-pykka_4.0.1-1.debian.tar.xz
 e60f9961d4023012175ab90e13e4e608 9738 python optional 
python-pykka_4.0.1-1_source.buildinfo

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

iQJFBAEBCgAvFiEEgKr0kHY4JR8IscpGILTH9aF8WPYFAmV+saYRHGpvZGFsQGRl
Ymlhbi5vcmcACgkQILTH9aF8WPaOLxAAnfFX1DWr/LqWfRu/0roYHDmSdqbnROn4
E9MQ7aW9w/8+cbKd9M50esBM1l6izJDpLVcFPvkPkmstRay3BoNPosyU2+Llcaag
Vj3nq2F2mtlgsnP3RbLWMaILX2jsVOZ52CubvshGC742WQn3KqkSyxeEvSUrRsYi
qDIZlV0MNAHu+ZPVrPnCm6/6Pw5BJPRiRBj5Umfk0I/IPjYOydsccFGDrCJ7c8uw
AYc/6daI1iwbDmI+Q3AjYa+xcrF9XAg2qatA1pJovyaCsSd0Hn2xXw74XVMS+aFC
ZbX88LDmeOHs76/mtIrGO9Mn77K2mKZJu5p3vXLY4g3BD6SLxuNv3eyXUxkdGTHg
A0jMz+KU6acq6lJ2rd4rt9zQdWYdnwWiFjgWtCIl2wVUJoFxSy13YMyEpHhvsqwM
3e6jseoMPZnPEqesysA6u5kIXX2j8ys7V67HQivvAls9H/JvPbfTznpy/CvRLPtI
BClVS++q9WxgX7hXxnn5cOzuAx2qBcoKj4cUiTLjS96nud4hu8Z1cun64eD2QVNZ
A7Fu/wrBEHXPUqmEQi4YeJkPICn+jI+aLACy7t4CIvLSHkI89fuRGp6cuKgTnTs6
Ns5pNItBfxgjhAJLmuAXyg6VsNIbM60eKGCEhKUhOgy6ZaQDGThdERLcx8NnJ1Pb
1fBL4XQVDGk=
=Jd6A
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to