From 89f2ab9f05ca072c843e08a0b440ceb954884247 Mon Sep 17 00:00:00 2001 From: "Bernhard M. Wiedemann" Date: Wed, 9 Mar 2016 16:32:38 +0100 Subject: [PATCH] dont claim copyright for future years otherwise, when building from unchanged source in 2018, it would claim Copyright 2018 which is not true Being able to reproduce identical output from identical input is important to Linux distributions --- doc/src/conf.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/src/conf.py b/doc/src/conf.py index 18b81e07..94ffa349 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -42,9 +42,7 @@ master_doc = 'index' # General information about the project. project = u'Psycopg' -from datetime import date -year = date.today().year -copyright = u'2001-%s, Federico Di Gregorio, Daniele Varrazzo' % year +copyright = u'2001-2016, Federico Di Gregorio, Daniele Varrazzo' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the