Skip to content

Commit

Permalink
sort package authors
Browse files Browse the repository at this point in the history
Co-authored-by: Tully Foote <[email protected]>
  • Loading branch information
ottojo and tfoote authored Feb 25, 2024
1 parent 9585320 commit 3d7b2ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rosdoc2/verbs/build/builders/sphinx_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,9 +649,9 @@ def generate_wrapping_rosdoc2_sphinx_project_into_directory(
'breathe_projects': ',\n'.join(breathe_projects) + '\n ',
'intersphinx_mapping_extensions': ',\n '.join(intersphinx_mapping_extensions),
'package': package,
'package_authors': ', '.join(set(
'package_authors': ', '.join(sorted(set(
[a.name for a in package.authors] + [m.name for m in package.maintainers]
)),
))),
'package_version_short': '.'.join(package.version.split('.')[0:2]),
}

Expand Down

0 comments on commit 3d7b2ea

Please sign in to comment.