Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update copyright year #1427

Merged
merged 1 commit into from Feb 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE.md
@@ -1,4 +1,4 @@
Copyright (c) 2012-2019 Johannes Köster <johannes.koester@tu-dortmund.de>
Copyright (c) 2012-2022 Johannes Köster <johannes.koester@tu-dortmund.de>

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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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 <johannes.koester@uni-due.com> (see LICENSE)
Copyright (c) 2012-2022 Johannes Köster <johannes.koester@uni-due.com> (see LICENSE)
4 changes: 3 additions & 1 deletion docs/conf.py
Expand Up @@ -15,6 +15,7 @@

import sys
import os
from datetime import datetime


# If extensions (or modules to document with autodoc) are in another directory,
Expand Down Expand Up @@ -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])
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

year=datetime.now().year


import snakemake
# The version info for the project you're documenting, acts as replacement for
Expand Down