kou commented on code in PR #186: URL: https://github.com/apache/arrow-flight-sql-postgresql/pull/186#discussion_r1491505135
########## doc/source/conf.py: ########## @@ -22,13 +22,19 @@ import os import pathlib import re +from datetime import datetime # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information project = 'Apache Arrow Flight SQL adapter for PostgreSQL' -copyright = '2022-2023, Apache Arrow Developers' -author = 'Apache Arrow Developers' +copyright = f'2022-{datetime.now().year}, Apache Software Foundation' +trademark = [ + "Apache Arrow Flight, Arrow Flight, Arrow Flight SQL, 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." +] Review Comment: Hmm. OK. Let's use one string for `copyright` like https://github.com/apache/arrow/pull/39505 : ```python copyright = ( f'2022-{datetime.now().year}, Apache Software Foundation. ' "Apache Arrow Flight, Arrow Flight, Arrow Flight SQL, 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." ) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
