Skip to content

Commit

Permalink
docs: update copyright year (#1427)
Browse files Browse the repository at this point in the history
Set copyright year to 2022 in license file and readme. Year is updated automatically for online documentation.

Co-authored-by: LvKvA <l.koetsveld22@gmail.com>
  • Loading branch information
LvKvA and LvKvA committed Feb 26, 2022
1 parent 5645b3f commit 6b9f5da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
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])

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

0 comments on commit 6b9f5da

Please sign in to comment.