From b5479ca9a28f56f1d7d7ee4e60c207be2ff25946 Mon Sep 17 00:00:00 2001 From: Leam Hall Date: Fri, 7 Feb 2025 05:14:39 -0600 Subject: [PATCH] Changed the copyright date to auto update. --- source/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/conf.py b/source/conf.py index c73dabdf2..77ed2d380 100644 --- a/source/conf.py +++ b/source/conf.py @@ -1,6 +1,7 @@ # -- Project information --------------------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information +import datetime import os # Some options are only enabled for the main packaging.python.org deployment builds @@ -13,7 +14,8 @@ project = "Python Packaging User Guide" -copyright = "2013–2020, PyPA" +copyright = "2013–" + str(datetime.datetime.now().year) + ", PyPA" + author = "Python Packaging Authority" # -- General configuration -------------------------------------------------------------