Simon Josefsson <si...@josefsson.org> writes:

> https://salsa.debian.org/python-team/packages/python-tuf

I have uploaded 5.1.0-2 to unstable, however I would appreciate review
of python-tuf since I'm new to python packaging.  My main concern is
about debian/tests/ and if there are better approaches?

> https://salsa.debian.org/python-team/packages/sigstore-python

I'm happy to report that this now builds!  Please review packaging.

However it does not yet run, there is a failure that shows up during
build too:

https://salsa.debian.org/python-team/packages/sigstore-python/-/jobs/6793076#L1421

For the ones who want to try out bleeding edge and perhaps debug things
further, please try something like this (keep in mind that this
downloads untrusted stuff...):

podman run -it --rm debian:unstable
echo "deb [trusted=yes] 
https://salsa.debian.org/python-team/packages/python-grpclib/-/jobs/6792419/artifacts/raw/aptly
 unstable main" | tee --append /etc/apt/sources.list.d/add.list
echo "deb [trusted=yes] 
https://salsa.debian.org/python-team/packages/python-betterproto/-/jobs/6792726/artifacts/raw/aptly
 unstable main" | tee --append /etc/apt/sources.list.d/add.list
echo "deb [trusted=yes] 
https://salsa.debian.org/python-team/packages/python-sigstore-rekor-types/-/jobs/6792765/artifacts/raw/aptly
 unstable main" | tee --append /etc/apt/sources.list.d/add.list
echo "deb [trusted=yes] 
https://salsa.debian.org/python-team/packages/python-sigstore-protobuf-specs/-/jobs/6792898/artifacts/raw/aptly
 unstable main" | tee --append /etc/apt/sources.list.d/add.list
echo "deb [trusted=yes] 
https://salsa.debian.org/python-team/packages/rfc8785/-/jobs/6792999/artifacts/raw/aptly
 unstable main" | tee --append /etc/apt/sources.list.d/add.list
echo "deb [trusted=yes] 
https://salsa.debian.org/python-team/packages/sigstore-python/-/jobs/6793079/artifacts/raw/aptly
 unstable main" | tee --append /etc/apt/sources.list.d/add.list
echo >>/etc/apt/apt.conf.d/99verify-peer.conf "Acquire { https::Verify-Peer 
false }"
apt update
apt install -y sigstore

The error message is below, does anyone have ideas?  I wonder if
pydantic in Debian is too old, or something.

/Simon

root@ab7dd93df2f1:/# sigstore
Traceback (most recent call last):
  File "/usr/bin/sigstore", line 5, in <module>
    from sigstore._cli import main
  File "/usr/lib/python3/dist-packages/sigstore/_cli.py", line 38, in <module>
    from sigstore import __version__, dsse
  File "/usr/lib/python3/dist-packages/sigstore/dsse/__init__.py", line 33, in 
<module>
    from sigstore.hashes import Hashed
  File "/usr/lib/python3/dist-packages/sigstore/hashes.py", line 28, in <module>
    class Hashed(BaseModel, frozen=True):
  File 
"/usr/lib/python3/dist-packages/pydantic/_internal/_model_construction.py", 
line 226, in __new__
    complete_model_class(
  File 
"/usr/lib/python3/dist-packages/pydantic/_internal/_model_construction.py", 
line 658, in complete_model_class
    schema = cls.__get_pydantic_core_schema__(cls, handler)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3/dist-packages/pydantic/main.py", line 702, in 
__get_pydantic_core_schema__
    return handler(source)
           ^^^^^^^^^^^^^^^
  File 
"/usr/lib/python3/dist-packages/pydantic/_internal/_schema_generation_shared.py",
 line 84, in __call__
    schema = self._handler(source_type)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3/dist-packages/pydantic/_internal/_generate_schema.py", 
line 610, in generate_schema
    schema = self._generate_schema_inner(obj)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3/dist-packages/pydantic/_internal/_generate_schema.py", 
line 879, in _generate_schema_inner
    return self._model_schema(obj)
           ^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3/dist-packages/pydantic/_internal/_generate_schema.py", 
line 691, in _model_schema
    {k: self._generate_md_field_schema(k, v, decorators) for k, v in 
fields.items()},
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3/dist-packages/pydantic/_internal/_generate_schema.py", 
line 1071, in _generate_md_field_schema
    common_field = self._common_field_schema(name, field_info, decorators)
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3/dist-packages/pydantic/_internal/_generate_schema.py", 
line 1263, in _common_field_schema
    schema = self._apply_annotations(
             ^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3/dist-packages/pydantic/_internal/_generate_schema.py", 
line 2056, in _apply_annotations
    schema = get_inner_schema(source_type)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File 
"/usr/lib/python3/dist-packages/pydantic/_internal/_schema_generation_shared.py",
 line 84, in __call__
    schema = self._handler(source_type)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3/dist-packages/pydantic/_internal/_generate_schema.py", 
line 2037, in inner_handler
    schema = self._generate_schema_inner(obj)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3/dist-packages/pydantic/_internal/_generate_schema.py", 
line 884, in _generate_schema_inner
    return self.match_type(obj)
           ^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3/dist-packages/pydantic/_internal/_generate_schema.py", 
line 995, in match_type
    return self._unknown_type_schema(obj)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3/dist-packages/pydantic/_internal/_generate_schema.py", 
line 513, in _unknown_type_schema
    raise PydanticSchemaGenerationError(
pydantic.errors.PydanticSchemaGenerationError: Unable to generate pydantic-core 
schema for <enum 'HashAlgorithm'>. Set `arbitrary_types_allowed=True` in the 
model_config to ignore this error or implement `__get_pydantic_core_schema__` 
on your type to fully support it.

If you got this error by calling handler(<some type>) within 
`__get_pydantic_core_schema__` then you likely need to call 
`handler.generate_schema(<some type>)` since we do not call 
`__get_pydantic_core_schema__` on `<some type>` otherwise to avoid infinite 
recursion.

For further information visit 
https://errors.pydantic.dev/2.10/u/schema-for-unknown-type
root@ab7dd93df2f1:/# 

Attachment: signature.asc
Description: PGP signature

Reply via email to