Skip to content

Commit 734fabf

Browse files
authored
Merge pull request #443 from jcharkow/patch/dynamic-copyright
make copyright year dynamic
2 parents 2332706 + 1afbfbc commit 734fabf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/source/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import urllib.request
2424
import contextlib
2525
import sys
26+
import datetime
2627

2728
sys.path.append(os.path.abspath("./_ext"))
2829

@@ -78,7 +79,7 @@
7879

7980
# General information about the project.
8081
project = u'pyOpenMS'
81-
copyright = u'2024, OpenMS Inc'
82+
copyright = u'{datetime.now().year}, OpenMS Inc'
8283
author = u'OpenMS Team'
8384

8485
# The version info for the project you're documenting, acts as replacement for

0 commit comments

Comments
 (0)