This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new a4b24451b docs: update copyright year dynamically in conf.py (#4546)
a4b24451b is described below

commit a4b24451bfd72aedaa7a07e6d2c62cb843da2ad0
Author: Neal Richardson <[email protected]>
AuthorDate: Mon Jul 20 09:29:19 2026 -0400

    docs: update copyright year dynamically in conf.py (#4546)
    
    I was looking at the website after lidavidm said on the mailing list
    that there had been updates and I noticed the year was wrong in the
    footer.
    
    ---------
    
    Co-authored-by: David Li <[email protected]>
---
 docs/source/conf.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/docs/source/conf.py b/docs/source/conf.py
index fea6ec5b1..054273a55 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -15,6 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
+import datetime
 import os
 import sys
 from pathlib import Path
@@ -27,9 +28,9 @@ sys.path.append(str(Path("./ext").resolve()))
 # 
https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
 
 project = "ADBC"
-copyright = """2022–2025 The Apache Software Foundation.  Apache Arrow, Arrow,
-Apache, the Apache logo, and the Apache Arrow project logo are either
-registered trademarks or trademarks of The Apache Software Foundation in the
+copyright = f"""2022–{datetime.date.today().year} The Apache Software 
Foundation.
+Apache Arrow, Arrow, Apache, the Apache 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 = "the Apache Arrow Developers"
 release = "24 (dev)"

Reply via email to