Issue
With author field in pyproject.toml
authors = ["R&D <researchanddevelopment@example.com>"]
Output:
[AttributeError]
'NoneType' object has no attribute 'group'
Perhaps this is for a good reason, but it confused me for a long while because I didn't know this meant something was wrong in my pyproject.toml file. It would be useful to have indications of toml validation problems by field.
Changed to:
authors = ["Research Development <researchanddevelopment@example.com>"]
Works, and that is fine. Just didn't know there were validation rules for these strings.
-vvvoption).Issue
With author field in pyproject.toml
Output:
Perhaps this is for a good reason, but it confused me for a long while because I didn't know this meant something was wrong in my pyproject.toml file. It would be useful to have indications of toml validation problems by field.
Changed to:
Works, and that is fine. Just didn't know there were validation rules for these strings.