This is an automated email from the ASF dual-hosted git repository. asorokoumov pushed a commit to branch address-asf-feedback-rc3 in repository https://gitbox.apache.org/repos/asf/otava.git
commit 27ee2ed25d05a4ed72bdc87b1ff044341fe0da44 Author: Alex Sorokoumov <[email protected]> AuthorDate: Thu May 8 21:58:25 2025 -0700 Replace project authors with Apache Otava Developers This change addresses ASF feedback about individual contributor's name and email in PKG-INFO and dist metadata. Turns out, poetry just takes the first author from pyproject and puts them as the only author in those files. Instead, we'll do the same as PyArrow - https://github.com/apache/arrow/blob/2a88c5267d980851dc1dcdff54dbfe115ee1ef89/python/pyproject.toml#L49-L51. --- pyproject.toml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 76ce6a8..8bc19bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,15 +19,7 @@ name = "otava" version = "0.6.0+incubating" description = "Change Detection for Continuous Performance Engineering" -authors = [ - "Alexander Sorokoumov <[email protected]>", - "Guy Bolton King <[email protected]>", - "Henrik Ingo <[email protected]>", - "Matt Fleming <[email protected]>", - "Piotr Kołaczkowski <[email protected]>", - "Sean McCarthy <[email protected]>", - "Shaunak Das <[email protected]>", -] +authors = ["Apache Otava Developers <[email protected]>"] [tool.poetry.dependencies] dateparser = "^1.0.0"
