diff --git a/LICENSE.md b/LICENSE.md index 063fe78d3..67ee9d293 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -Copyright (c) 2012-2019 Johannes Köster +Copyright (c) 2012-2022 Johannes Köster Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/README.md b/README.md index 4693db5c5..852258877 100644 --- a/README.md +++ b/README.md @@ -20,4 +20,4 @@ Finally, Snakemake workflows can entail a description of required software, whic **Homepage: https://snakemake.github.io** -Copyright (c) 2012-2021 Johannes Köster (see LICENSE) +Copyright (c) 2012-2022 Johannes Köster (see LICENSE) diff --git a/docs/conf.py b/docs/conf.py index 158436ff2..230bba22c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,6 +15,7 @@ import sys import os +from datetime import datetime # If extensions (or modules to document with autodoc) are in another directory, @@ -60,7 +61,8 @@ # General information about the project. project = 'Snakemake' -copyright = '2014-2021, Johannes Koester' +date = datetime.now() +copyright = '2014-{year}, Johannes Koester'.format(year=date.timetuple()[0]) import snakemake # The version info for the project you're documenting, acts as replacement for