From 2e344d4d63aaf32a759d602aee4e3f69a24e90dd Mon Sep 17 00:00:00 2001 From: "Bernhard M. Wiedemann" Date: Mon, 23 Jul 2018 15:02:59 +0200 Subject: [PATCH] Do not claim copyright for future years When building today's python-pytest-doc openSUSE package in the year 2033, the documentation .html files state Copyright 2015-2033 , holger krekel and pytest-dev team. That cannot be correct, because nobody did anything copyright-worthy for this file in 2033. See also https://stackoverflow.com/questions/2390230/do-copyright-dates-need-to-be-updated Additionally, this change makes the package build reproducible. See https://reproducible-builds.org/ for why this is good. --- doc/en/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/conf.py b/doc/en/conf.py index ebff6ff3b..5941716ab 100644 --- a/doc/en/conf.py +++ b/doc/en/conf.py @@ -65,7 +65,7 @@ master_doc = "contents" # General information about the project. project = u"pytest" year = datetime.datetime.utcnow().year -copyright = u"2015–{} , holger krekel and pytest-dev team".format(year) +copyright = u"2015–2018 , holger krekel and pytest-dev team" # The language for content autogenerated by Sphinx. Refer to documentation