From 77d31dc8a63a4fbce20207a496ddebcbc5e947d2 Mon Sep 17 00:00:00 2001 From: Mike Naberezny Date: Wed, 31 Jul 2013 19:34:36 -0700 Subject: [PATCH] Update year automatically during docs build --- docs/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 99e88be..5e3778e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,6 +15,7 @@ import os import sys +from datetime import date # If your extensions are in another directory, add it here. If the directory # is relative to the documentation root, use os.path.abspath to make it @@ -42,7 +43,8 @@ master_doc = 'index' # General information about the project. project = u'Py65' -copyright = u'2008-2013, Mike Naberezny' +year = date.today().year +copyright = u'2008-%d, Mike Naberezny and contributors' % year # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the