Your message dated Sat, 20 Jul 2024 21:33:58 +0000
with message-id <e1svhii-008eor...@fasolo.debian.org>
and subject line Bug#1073419: fixed in geojson-pydantic 1.1.0-1
has caused the Debian Bug report #1073419,
regarding geojson-pydantic: FTBFS: dh_auto_test: error: pybuild --test -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.)


-- 
1073419: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1073419
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: geojson-pydantic
Version: 0.6.3-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240615 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
>  debian/rules binary
> dh binary --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:129: Building wheel for python3.12 with "build" 
> module
> I: pybuild base:311: python3.12 -m build --skip-dependency-check 
> --no-isolation --wheel --outdir 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_geojson-pydantic  
> * Building wheel...
> Successfully built geojson_pydantic-0.6.3-py3-none-any.whl
> I: pybuild plugin_pyproject:144: Unpacking wheel built for python3.12 with 
> "installer" module
> I: pybuild plugin_pyproject:129: Building wheel for python3.11 with "build" 
> module
> I: pybuild base:311: python3.11 -m build --skip-dependency-check 
> --no-isolation --wheel --outdir 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_geojson-pydantic  
> * Building wheel...
> Successfully built geojson_pydantic-0.6.3-py3-none-any.whl
> I: pybuild plugin_pyproject:144: Unpacking wheel built for python3.11 with 
> "installer" module
>    dh_auto_test -O--buildsystem=pybuild
> I: pybuild base:311: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_geojson-pydantic/build; python3.12 -m 
> pytest tests
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.12.4, pytest-8.2.2, pluggy-1.5.0
> rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_geojson-pydantic/build
> configfile: pyproject.toml
> collected 0 items / 3 errors
> 
> ==================================== ERRORS 
> ====================================
> ___________________ ERROR collecting tests/test_features.py 
> ____________________
> tests/test_features.py:8: in <module>
>     from geojson_pydantic.features import Feature, FeatureCollection
> geojson_pydantic/__init__.py:3: in <module>
>     from .features import Feature, FeatureCollection  # noqa
> geojson_pydantic/features.py:9: in <module>
>     from geojson_pydantic.geometries import Geometry, GeometryCollection
> geojson_pydantic/geometries.py:256: in <module>
>     class GeometryCollection(BaseModel, GeoInterfaceMixin):
> pydantic/main.py:286: in pydantic.main.ModelMetaclass.__new__
>     ???
> pydantic/main.py:807: in pydantic.main.BaseModel.__try_update_forward_refs__
>     ???
> pydantic/typing.py:554: in pydantic.typing.update_model_forward_refs
>     ???
> pydantic/typing.py:520: in pydantic.typing.update_field_forward_refs
>     ???
> pydantic/typing.py:66: in pydantic.typing.evaluate_forwardref
>     ???
> E   TypeError: ForwardRef._evaluate() missing 1 required keyword-only 
> argument: 'recursive_guard'
> __________________ ERROR collecting tests/test_geometries.py 
> ___________________
> tests/test_geometries.py:8: in <module>
>     from geojson_pydantic.geometries import (
> geojson_pydantic/__init__.py:3: in <module>
>     from .features import Feature, FeatureCollection  # noqa
> geojson_pydantic/features.py:9: in <module>
>     from geojson_pydantic.geometries import Geometry, GeometryCollection
> geojson_pydantic/geometries.py:178: in <module>
>     class Polygon(_GeometryBase):
> geojson_pydantic/geometries.py:188: in Polygon
>     @validator("coordinates")
> pydantic/class_validators.py:93: in pydantic.class_validators.validator.dec
>     ???
> pydantic/class_validators.py:156: in 
> pydantic.class_validators._prepare_validator
>     ???
> E   pydantic.errors.ConfigError: duplicate validator function 
> "geojson_pydantic.geometries.Polygon.check_closure"; if this is intended, set 
> `allow_reuse=True`
> ____________________ ERROR collecting tests/test_package.py 
> ____________________
> tests/test_package.py:1: in <module>
>     import geojson_pydantic
> geojson_pydantic/__init__.py:3: in <module>
>     from .features import Feature, FeatureCollection  # noqa
> geojson_pydantic/features.py:9: in <module>
>     from geojson_pydantic.geometries import Geometry, GeometryCollection
> geojson_pydantic/geometries.py:178: in <module>
>     class Polygon(_GeometryBase):
> geojson_pydantic/geometries.py:188: in Polygon
>     @validator("coordinates")
> pydantic/class_validators.py:93: in pydantic.class_validators.validator.dec
>     ???
> pydantic/class_validators.py:156: in 
> pydantic.class_validators._prepare_validator
>     ???
> E   pydantic.errors.ConfigError: duplicate validator function 
> "geojson_pydantic.geometries.Polygon.check_closure"; if this is intended, set 
> `allow_reuse=True`
> =========================== short test summary info 
> ============================
> ERROR tests/test_features.py - TypeError: ForwardRef._evaluate() missing 1 
> re...
> ERROR tests/test_geometries.py - pydantic.errors.ConfigError: duplicate 
> valid...
> ERROR tests/test_package.py - pydantic.errors.ConfigError: duplicate 
> validato...
> !!!!!!!!!!!!!!!!!!! Interrupted: 3 errors during collection 
> !!!!!!!!!!!!!!!!!!!!
> ============================== 3 errors in 0.43s 
> ===============================
> E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=2: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_geojson-pydantic/build; python3.12 -m 
> pytest tests
> I: pybuild base:311: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_geojson-pydantic/build; python3.11 -m 
> pytest tests
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.11.9, pytest-8.2.2, pluggy-1.5.0
> rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_geojson-pydantic/build
> configfile: pyproject.toml
> collected 134 items
> 
> tests/test_features.py ....................                              [ 
> 14%]
> tests/test_geometries.py ...........Xxxxx..............XXXXXXx.........X [ 
> 50%]
> Xx.....XXXx.......................................................       [ 
> 99%]
> tests/test_package.py .                                                  
> [100%]
> 
> ================== 115 passed, 7 xfailed, 12 xpassed in 0.62s 
> ==================
> dh_auto_test: error: pybuild --test -i python{version} -p "3.12 3.11" 
> returned exit code 13


The full build log is available from:
http://qa-logs.debian.net/2024/06/15/geojson-pydantic_0.6.3-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240615;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240615&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: geojson-pydantic
Source-Version: 1.1.0-1
Done: Alexandre Detiste <tc...@debian.org>

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

Debian distribution maintenance software
pp.
Alexandre Detiste <tc...@debian.org> (supplier of updated geojson-pydantic 
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: Sat, 20 Jul 2024 23:01:16 +0200
Source: geojson-pydantic
Architecture: source
Version: 1.1.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <team+pyt...@tracker.debian.org>
Changed-By: Alexandre Detiste <tc...@debian.org>
Closes: 1073419
Changes:
 geojson-pydantic (1.1.0-1) unstable; urgency=medium
 .
   * Team upload.
   * New upstream version 1.1.0 (Closes: #1073419)
 .
   [ Bas Couwenberg ]
   * Replace geos-3.12.patch with upstream changes.
Checksums-Sha1:
 9fea32077a940eaae27b5b5cc3c1178912190f87 2290 geojson-pydantic_1.1.0-1.dsc
 ee866c0bf48f9225dfb2ea2f65af0fa46db36a86 23154 
geojson-pydantic_1.1.0.orig.tar.gz
 d8458dab6a7c83b99bcd8bee3687ce76e95dd14e 2792 
geojson-pydantic_1.1.0-1.debian.tar.xz
 83119a9c6812116e2eb26a2038cf214a6432e0f6 8149 
geojson-pydantic_1.1.0-1_source.buildinfo
Checksums-Sha256:
 9af5a5b71aa59f42426eb6cfd23e972ee5349302a95ca077515db521b2b2fca5 2290 
geojson-pydantic_1.1.0-1.dsc
 bf371bc23c6d78adf7af81bc61d6e1d836b620e948faa59fd4c94c03545a694d 23154 
geojson-pydantic_1.1.0.orig.tar.gz
 30966948915db6d7651dc239f5a878fc6511b66065fb2074fedbcc7f67469118 2792 
geojson-pydantic_1.1.0-1.debian.tar.xz
 f1b63caa1982c858639b8a9bfb6175c6eb80148a9eb7d1d0d26ec12649a21dee 8149 
geojson-pydantic_1.1.0-1_source.buildinfo
Files:
 559bbbc23dc8ec783568d590d6c97e39 2290 python optional 
geojson-pydantic_1.1.0-1.dsc
 4751cfb2879e8a9e8538f07898457739 23154 python optional 
geojson-pydantic_1.1.0.orig.tar.gz
 5061f3e455aa0605dd989f9128f4c10c 2792 python optional 
geojson-pydantic_1.1.0-1.debian.tar.xz
 adba7dde104982a3d36e07caa689b804 8149 python optional 
geojson-pydantic_1.1.0-1_source.buildinfo

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

iQJFBAEBCgAvFiEEj23hBDd/OxHnQXSHMfMURUShdBoFAmacKfkRHHRjaGV0QGRl
Ymlhbi5vcmcACgkQMfMURUShdBq8TA//S8iw1DS7rEe+yPEUj9Oiulg9nDe5sO/o
XNjHud22Q65EiMKUuuAcJlLvSCS7R9s6UCqHSPhVixkmG1rpLqGIAH/4erVJlylf
sb2verxM68AM9/7x4GdPiUvjNqYnvOKQoTuKgOGREnlD4Eu8q2glQodZ2YHOq28s
VdYNGPLmumCbh3X8MfWg87UBSmo5PMheJN96SV2szCig4cMLx+ZG398AXgGgGwNM
99moFHS1kIGeZHSM20QvwtBKrDuu+pSlLJEpWb5o/k5qMbSoMwOTX2nYVMk+jN0s
XV0DZgLP9ed3wyEdg87hkiT+5R+akjROh7jSqQFZ1a5/Cqs9D9rP0wfIyzch0i8O
KAyyg+OBniZTcev74PPLGPrpVjzU7c2t5Mb5n7kD2P3vlckQHU2HDG1g8tzW/H8I
zqK/ptyvbdXBfp18VPujDj53Nm8vsYi/FDG/UHx0p4uYsVOG/RG7A1P9e9tuiS90
4hVyO8Ubk5TzGicqTFc9jgS6SlulVNXaw0og1Gac1Sk/mIL40pLvGwOnm+6vzKPQ
kZjbTTenUHmH4rS/+3/d6JRfmNoV+EPEuLa87zdJumUyLq2IWBiklKv9XDlDBgq3
wDmHFucLfcHC2KPQrkrGsvK/Tfa9CWqw9OD33amUypgcTaHYjnkwPj49rD9MOotZ
PJDXjaCIw5g=
=zc4I
-----END PGP SIGNATURE-----

Attachment: pgpxTDCtfFyNh.pgp
Description: PGP signature


--- End Message ---

Reply via email to