Dear Maintainer,

Actual error (from the log) is:

    node = Expr(value=Constant(value='The name/model of the car.', kind=None))

        def ast_is_literal_str(node: ast.AST) -> bool:
            """Return True if the given node is a literal string."""
            return (
                isinstance(node, ast.Expr)
    >           and isinstance(node.value, (ast.Constant, ast.Str))
                                                          ^^^^^^^
                and isinstance(ast_get_constant_value(node.value), str)
            )
    E       AttributeError: module 'ast' has no attribute 'Str'

    /usr/lib/python3/dist-packages/docstring_parser/attrdoc.py:48: 
AttributeError


Fixed by docstring-parser author in
https://github.com/rr-/docstring_parser/pull/101
https://github.com/rr-/docstring_parser/pull/91

I just verified that your package builds fine after applying upstream commits.

Please see: https://bugs.debian.org/1123132


Kind Regards

Reply via email to