This is an automated email from the ASF dual-hosted git repository. raulcd pushed a commit to branch maint-15.0.x in repository https://gitbox.apache.org/repos/asf/arrow.git
commit 31ecb4ccb476773aebd5cebbd1e4e012a9ac6878 Author: Joris Van den Bossche <[email protected]> AuthorDate: Mon Jan 15 15:02:45 2024 +0100 GH-39504: [Docs] Update footer in main sphinx docs with correct attribution (#39505) * Closes: #39504 Lead-authored-by: Joris Van den Bossche <[email protected]> Co-authored-by: Alenka Frim <[email protected]> Signed-off-by: AlenkaF <[email protected]> --- docs/source/conf.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index cde0c2b31f..5af7b7955f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -201,7 +201,12 @@ master_doc = 'index' # General information about the project. project = u'Apache Arrow' -copyright = f'2016-{datetime.datetime.now().year} Apache Software Foundation' +copyright = ( + f"2016-{datetime.datetime.now().year} Apache Software Foundation.\n" + "Apache Arrow, Arrow, Apache, the Apache feather logo, and the Apache Arrow " + "project logo are either registered trademarks or trademarks of The Apache " + "Software Foundation in the United States and other countries" +) author = u'Apache Software Foundation' # The version info for the project you're documenting, acts as replacement for
