Your message dated Fri, 19 Dec 2025 20:34:36 +0000
with message-id <[email protected]>
and subject line Bug#1123210: fixed in python-datamodel-code-generator 0.45.0-1
has caused the Debian Bug report #1123210,
regarding python-datamodel-code-generator: FTBFS: dh_auto_test: error: pybuild 
--test --test-pytest -i python{version} -p "3.14 3.13" 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 [email protected]
immediately.)


-- 
1123210: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1123210
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:python-datamodel-code-generator
Version: 0.35.0-1
Severity: serious
Tags: ftbfs forky sid

Dear maintainer:

During a rebuild of all packages in unstable, this package failed to build.

Below you will find the last part of the build log (probably the most
relevant part, but not necessarily). If required, the full build log
is available here:

https://people.debian.org/~sanvila/build-logs/202512/

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you cannot reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:python-datamodel-code-generator, so that 
this is still
visible in the BTS web page for this package.

Thanks.

--------------------------------------------------------------------------------
[...]
 debian/rules clean
dh clean --buildsystem=pybuild
   dh_auto_clean -O--buildsystem=pybuild
   dh_autoreconf_clean -O--buildsystem=pybuild
   dh_clean -O--buildsystem=pybuild
 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:131: Building wheel for python3.14 with "build" 
module
I: pybuild base:317: python3.14 -m build --skip-dependency-check --no-isolation 
--wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14  
* Building wheel...
Successfully built datamodel_code_generator-0.35.0-py3-none-any.whl

[... snipped ...]

tmp_path = 
PosixPath('/tmp/pytest-of-sbuild/pytest-1/test_main_graphql_use_standard0')

    @freeze_time("2019-07-26")
    @pytest.mark.skipif(
        black.__version__.split(".")[0] == "19",
        reason="Installed black doesn't support the old style",
    )
    def test_main_graphql_use_standard_collections(tmp_path: Path) -> None:
        output_file: Path = tmp_path / "output.py"
        return_code: Exit = main([
            "--input",
            str(GRAPHQL_DATA_PATH / "use-standard-collections.graphql"),
            "--output",
            str(output_file),
            "--input-file-type",
            "graphql",
            "--use-standard-collections",
        ])
>       assert return_code == Exit.OK
E       assert <Exit.ERROR: 1> == <Exit.OK: 0>
E        +  where <Exit.OK: 0> = Exit.OK

tests/main/graphql/test_main_graphql.py:273: AssertionError
----------------------------- Captured stderr call -----------------------------
Traceback (most recent call last):
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/__main__.py",
 line 512, in main
    generate(
    ~~~~~~~~^
        input_=config.url or config.input or sys.stdin.read(),
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ...<73 lines>...
        disable_future_imports=config.disable_future_imports,
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    )
    ^
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/__init__.py",
 line 338, in generate
    from datamodel_code_generator.parser.graphql import GraphQLParser  # noqa: 
PLC0415
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/parser/graphql.py",
 line 46, in <module>
    graphql_resolver = graphql.type.introspection.TypeResolvers()
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'graphql.type.introspection' has no attribute 
'TypeResolvers'

_____________________ test_main_graphql_use_union_operator _____________________

tmp_path = 
PosixPath('/tmp/pytest-of-sbuild/pytest-1/test_main_graphql_use_union_op0')

    @freeze_time("2019-07-26")
    @pytest.mark.skipif(
        black.__version__.split(".")[0] == "19",
        reason="Installed black doesn't support the old style",
    )
    def test_main_graphql_use_union_operator(tmp_path: Path) -> None:
        output_file: Path = tmp_path / "output.py"
        return_code: Exit = main([
            "--input",
            str(GRAPHQL_DATA_PATH / "use-union-operator.graphql"),
            "--output",
            str(output_file),
            "--input-file-type",
            "graphql",
            "--use-union-operator",
        ])
>       assert return_code == Exit.OK
E       assert <Exit.ERROR: 1> == <Exit.OK: 0>
E        +  where <Exit.OK: 0> = Exit.OK

tests/main/graphql/test_main_graphql.py:295: AssertionError
----------------------------- Captured stderr call -----------------------------
Traceback (most recent call last):
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/__main__.py",
 line 512, in main
    generate(
    ~~~~~~~~^
        input_=config.url or config.input or sys.stdin.read(),
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ...<73 lines>...
        disable_future_imports=config.disable_future_imports,
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    )
    ^
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/__init__.py",
 line 338, in generate
    from datamodel_code_generator.parser.graphql import GraphQLParser  # noqa: 
PLC0415
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/parser/graphql.py",
 line 46, in <module>
    graphql_resolver = graphql.type.introspection.TypeResolvers()
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'graphql.type.introspection' has no attribute 
'TypeResolvers'

_____________________ test_main_graphql_extra_fields_allow _____________________

tmp_path = 
PosixPath('/tmp/pytest-of-sbuild/pytest-1/test_main_graphql_extra_fields0')

    @freeze_time("2019-07-26")
    def test_main_graphql_extra_fields_allow(tmp_path: Path) -> None:
        output_file: Path = tmp_path / "output.py"
        return_code: Exit = main([
            "--input",
            str(GRAPHQL_DATA_PATH / "simple-star-wars.graphql"),
            "--output",
            str(output_file),
            "--input-file-type",
            "graphql",
            "--extra-fields",
            "allow",
        ])
>       assert return_code == Exit.OK
E       assert <Exit.ERROR: 1> == <Exit.OK: 0>
E        +  where <Exit.OK: 0> = Exit.OK

tests/main/graphql/test_main_graphql.py:312: AssertionError
----------------------------- Captured stderr call -----------------------------
Traceback (most recent call last):
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/__main__.py",
 line 512, in main
    generate(
    ~~~~~~~~^
        input_=config.url or config.input or sys.stdin.read(),
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ...<73 lines>...
        disable_future_imports=config.disable_future_imports,
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    )
    ^
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/__init__.py",
 line 338, in generate
    from datamodel_code_generator.parser.graphql import GraphQLParser  # noqa: 
PLC0415
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/parser/graphql.py",
 line 46, in <module>
    graphql_resolver = graphql.type.introspection.TypeResolvers()
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'graphql.type.introspection' has no attribute 
'TypeResolvers'

___________________________ test_graphql_field_enum ____________________________

tmp_path = PosixPath('/tmp/pytest-of-sbuild/pytest-1/test_graphql_field_enum0')

    @freeze_time("2019-07-26")
    def test_graphql_field_enum(tmp_path: Path) -> None:
        output_file: Path = tmp_path / "output.py"
        return_code: Exit = main([
            "--input",
            str(GRAPHQL_DATA_PATH / "field-default-enum.graphql"),
            "--output",
            str(output_file),
            "--input-file-type",
            "graphql",
            "--set-default-enum-member",
        ])
>       assert return_code == Exit.OK
E       assert <Exit.ERROR: 1> == <Exit.OK: 0>
E        +  where <Exit.OK: 0> = Exit.OK

tests/parser/test_graphql.py:29: AssertionError
----------------------------- Captured stderr call -----------------------------
Traceback (most recent call last):
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/__main__.py",
 line 512, in main
    generate(
    ~~~~~~~~^
        input_=config.url or config.input or sys.stdin.read(),
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ...<73 lines>...
        disable_future_imports=config.disable_future_imports,
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    )
    ^
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/__init__.py",
 line 338, in generate
    from datamodel_code_generator.parser.graphql import GraphQLParser  # noqa: 
PLC0415
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/parser/graphql.py",
 line 46, in <module>
    graphql_resolver = graphql.type.introspection.TypeResolvers()
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'graphql.type.introspection' has no attribute 
'TypeResolvers'

________________________ test_graphql_union_aliased_bug ________________________

tmp_path = 
PosixPath('/tmp/pytest-of-sbuild/pytest-1/test_graphql_union_aliased_bug0')

    @freeze_time("2019-07-26")
    def test_graphql_union_aliased_bug(tmp_path: Path) -> None:
        output_file: Path = tmp_path / "output.py"
        return_code: Exit = main([
            "--input",
            str(GRAPHQL_DATA_PATH / "union-aliased-bug.graphql"),
            "--output",
            str(output_file),
            "--input-file-type",
            "graphql",
        ])
>       assert return_code == Exit.OK
E       assert <Exit.ERROR: 1> == <Exit.OK: 0>
E        +  where <Exit.OK: 0> = Exit.OK

tests/parser/test_graphql.py:44: AssertionError
----------------------------- Captured stderr call -----------------------------
Traceback (most recent call last):
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/__main__.py",
 line 512, in main
    generate(
    ~~~~~~~~^
        input_=config.url or config.input or sys.stdin.read(),
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ...<73 lines>...
        disable_future_imports=config.disable_future_imports,
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    )
    ^
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/__init__.py",
 line 338, in generate
    from datamodel_code_generator.parser.graphql import GraphQLParser  # noqa: 
PLC0415
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/parser/graphql.py",
 line 46, in <module>
    graphql_resolver = graphql.type.introspection.TypeResolvers()
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'graphql.type.introspection' has no attribute 
'TypeResolvers'

_________________________ test_graphql_union_commented _________________________

tmp_path = 
PosixPath('/tmp/pytest-of-sbuild/pytest-1/test_graphql_union_commented0')

    @freeze_time("2019-07-26")
    def test_graphql_union_commented(tmp_path: Path) -> None:
        output_file: Path = tmp_path / "output.py"
        return_code: Exit = main([
            "--input",
            str(GRAPHQL_DATA_PATH / "union-commented.graphql"),
            "--output",
            str(output_file),
            "--input-file-type",
            "graphql",
        ])
>       assert return_code == Exit.OK
E       assert <Exit.ERROR: 1> == <Exit.OK: 0>
E        +  where <Exit.OK: 0> = Exit.OK

tests/parser/test_graphql.py:63: AssertionError
----------------------------- Captured stderr call -----------------------------
Traceback (most recent call last):
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/__main__.py",
 line 512, in main
    generate(
    ~~~~~~~~^
        input_=config.url or config.input or sys.stdin.read(),
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ...<73 lines>...
        disable_future_imports=config.disable_future_imports,
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    )
    ^
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/__init__.py",
 line 338, in generate
    from datamodel_code_generator.parser.graphql import GraphQLParser  # noqa: 
PLC0415
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/datamodel_code_generator/parser/graphql.py",
 line 46, in <module>
    graphql_resolver = graphql.type.introspection.TypeResolvers()
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'graphql.type.introspection' has no attribute 
'TypeResolvers'

=========================== short test summary info ============================
FAILED tests/main/graphql/test_annotated.py::test_annotated - assert <Exit.ER...
FAILED 
tests/main/graphql/test_annotated.py::test_annotated_use_standard_collections
FAILED 
tests/main/graphql/test_annotated.py::test_annotated_use_standard_collections_use_union_operator
FAILED tests/main/graphql/test_annotated.py::test_annotated_use_union_operator
FAILED tests/main/graphql/test_annotated.py::test_annotated_field_aliases - a...
FAILED 
tests/main/graphql/test_main_graphql.py::test_main_graphql_simple_star_wars[pydantic.BaseModel-simple_star_wars.py]
FAILED 
tests/main/graphql/test_main_graphql.py::test_main_graphql_simple_star_wars[dataclasses.dataclass-simple_star_wars_dataclass.py]
FAILED 
tests/main/graphql/test_main_graphql.py::test_main_graphql_different_types_of_fields
FAILED tests/main/graphql/test_main_graphql.py::test_main_use_default_kwarg
FAILED 
tests/main/graphql/test_main_graphql.py::test_main_graphql_custom_scalar_types
FAILED tests/main/graphql/test_main_graphql.py::test_main_graphql_field_aliases
FAILED tests/main/graphql/test_main_graphql.py::test_main_graphql_enums - ass...
FAILED tests/main/graphql/test_main_graphql.py::test_main_graphql_union - ass...
FAILED 
tests/main/graphql/test_main_graphql.py::test_main_graphql_additional_imports_isort_not_4
FAILED 
tests/main/graphql/test_main_graphql.py::test_main_graphql_custom_formatters
FAILED 
tests/main/graphql/test_main_graphql.py::test_main_graphql_use_standard_collections
FAILED 
tests/main/graphql/test_main_graphql.py::test_main_graphql_use_union_operator
FAILED 
tests/main/graphql/test_main_graphql.py::test_main_graphql_extra_fields_allow
FAILED tests/parser/test_graphql.py::test_graphql_field_enum - assert <Exit.E...
FAILED tests/parser/test_graphql.py::test_graphql_union_aliased_bug - assert ...
FAILED tests/parser/test_graphql.py::test_graphql_union_commented - assert <E...
========== 21 failed, 716 passed, 15 skipped, 1 deselected in 11.42s ===========
E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=1: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build; python3.13 -m pytest -k 'not 
test_openapi_parser_parse_remote_ref'
dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.14 
3.13" returned exit code 13
make: *** [debian/rules:9: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------

--- End Message ---
--- Begin Message ---
Source: python-datamodel-code-generator
Source-Version: 0.45.0-1
Done: Simon Josefsson <[email protected]>

We believe that the bug you reported is fixed in the latest version of
python-datamodel-code-generator, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Simon Josefsson <[email protected]> (supplier of updated 
python-datamodel-code-generator 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 [email protected])


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

Format: 1.8
Date: Fri, 19 Dec 2025 21:09:00 +0100
Source: python-datamodel-code-generator
Architecture: source
Version: 0.45.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <[email protected]>
Changed-By: Simon Josefsson <[email protected]>
Closes: 1123210
Changes:
 python-datamodel-code-generator (0.45.0-1) unstable; urgency=medium
 .
   * New upstream version 0.45.0 (Closes: #1123210)
   * Drop upstreamed isort patch
   * Add B-D python3-inline-snapshot
   * Add B-D python3-time-machine
   * Add B-D python3-watchfiles
Checksums-Sha1:
 ef30e4c3151b1621af25fecbd6e1c9009da68f36 3164 
python-datamodel-code-generator_0.45.0-1.dsc
 921c85abd4575372af27026543fc320472ad83bf 387028 
python-datamodel-code-generator_0.45.0.orig.tar.xz
 b9758ca4e7b4e9000e954b34e3981b8259ba6355 3272 
python-datamodel-code-generator_0.45.0-1.debian.tar.xz
 84dd94c4f38178fa0072b9f60e01479ed19ff7a8 1384052 
python-datamodel-code-generator_0.45.0-1.git.tar.xz
 c8178a4555d41dd7c2da8b4d17784961d6dfabc9 17235 
python-datamodel-code-generator_0.45.0-1_source.buildinfo
Checksums-Sha256:
 1d17c1b4020d551a431efcf38e83899b63fa7820a9d56041d55bcbf4a63082b8 3164 
python-datamodel-code-generator_0.45.0-1.dsc
 6baf37116a8ec7c3d6543ca4b55cc604067c5eab09d4bf3146b3864ed9c75083 387028 
python-datamodel-code-generator_0.45.0.orig.tar.xz
 8cf871fe4735124833e16e4335c67d0c23993aa6dafb4a4c17a61a3f726fdfb5 3272 
python-datamodel-code-generator_0.45.0-1.debian.tar.xz
 4ca3c0a59295d07c752092cc942223cf09ac2a454a85544d6c9a8eececf689cc 1384052 
python-datamodel-code-generator_0.45.0-1.git.tar.xz
 c1301eb1a626a9228ddf2e7fca1215bd0305f54b256d709c5a73c66964cdb637 17235 
python-datamodel-code-generator_0.45.0-1_source.buildinfo
Files:
 4ec7e70566a847d59e7fd6addcdb55ae 3164 python optional 
python-datamodel-code-generator_0.45.0-1.dsc
 ef5c43a0eed01c3a643a97f5ff6f03dc 387028 python optional 
python-datamodel-code-generator_0.45.0.orig.tar.xz
 6e71091c00ee281fceaf53a53e96b4aa 3272 python optional 
python-datamodel-code-generator_0.45.0-1.debian.tar.xz
 10d2ea68c68078e1e1dc3113ebe8682a 1384052 python optional 
python-datamodel-code-generator_0.45.0-1.git.tar.xz
 d989dd13ec6abae5f4b0862b00f88333 17235 python optional 
python-datamodel-code-generator_0.45.0-1_source.buildinfo
Git-Tag-Info: tag=edf9169f9116b44708ce87d7e1eab91c555ef012 
fp=a3cc9c870b9d310abad4cf2f51722b08fe4745a2
Git-Tag-Tagger: Simon Josefsson <[email protected]>

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

iQIzBAEBCgAdFiEEN02M5NuW6cvUwJcqYG0ITkaDwHkFAmlFtD8ACgkQYG0ITkaD
wHkIpQ/7B8poj8xeQaGJPHIAIV2bUd7m6S7yrhyTKbB1BCSJBxzo9dt6r639HF88
HiMMMf/pc7kdCxlI8FdsPnE68LZVhqA9EHpt7PgTTdKbPTJAuxGMCUEwCC94Nmxz
CzPYzYe2nKKgu4uDA7/3aIUycDOEx+2PwFshEjoiyEGf96Wy26bOkQFFckYQ0mYt
HkptuFHF3HMonDo+6iIB0jQ+7WEwrxCNWHy+PGVIry5kQWDijxkAtw3J55BWH6kW
GiTZxia83R4brcjxNNAb23uvmQ8en07NjFOw2AGxlSl4ocxyEyqxrBh+MnpALX4H
cNJa0X8e47Tm+oJNcDS2T37tT/+iytv4J4QyKBwTPUjjkUEckg/Ans/IKnAaa2zq
A2NIoiDbPzDrMWvEMRK5Z6NMlZsdEP+fTEr0RlK4Pq7IwSelk+Dys2qtUDKBAIz1
4GSSrzmwhi808H//6It+/Pyv+rFZ5ZL8iRds33+tK7pmApWgR93Sbbm8Ycx6Q+B2
Grmjtuxz8gZx1b1FMK8K0BermE/A20Vm7Y4byQMTDwA4x7CFHqOA60WRe8xcEHXg
yZhos7P3OWgEfSIX2E+N8voU/2A2bZHqu1p/c7Km2fa6KbaeO2W8u7TMePaUOCsR
Qy0gSTBwXQCFXafxe7GLCueFyGDuwDv94OtQwKc0jWH4oJC6EZ0=
=Bmck
-----END PGP SIGNATURE-----

Attachment: pgppAKwQ0I0QG.pgp
Description: PGP signature


--- End Message ---

Reply via email to