From f473831ddab5a8b30e5647ec60bc2223ebb6287a Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Wed, 2 Apr 2025 22:31:38 +0000 Subject: [PATCH] Fix authors/maintainers format in pyproject.toml Corresponding name and email keys should be part of the same table row, not separate rows unto themselves. The line is now wider than 80 columns because you can't really wrap inline tables in TOML. Change-Id: I7881beaec3288222c39a4a017687165d9fb5796b --- pyproject.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d43a4a3..06b0628 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,8 +4,7 @@ build-backend = "pbr.build" [project] authors = [ - {email = "service-discuss@lists.opendev.org"}, - {name = "OpenDev Contributors"}, + {name = "OpenDev Contributors", email = "service-discuss@lists.opendev.org"}, ] classifiers = [ "Development Status :: 5 - Production/Stable", @@ -39,8 +38,7 @@ keywords = [ ] license = "Apache-2.0" maintainers = [ - {email = "service-discuss@lists.opendev.org"}, - {name = "OpenDev Contributors"}, + {name = "OpenDev Contributors", email = "service-discuss@lists.opendev.org"}, ] name = "opendev-engagement" readme = {charset = "UTF-8", content-type = "text/x-rst", file = "README.rst"}