Skip to content

Commit

Permalink
automatically keep copyright up-to-date (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
epwalsh authored Mar 7, 2022
1 parent 06adb07 commit 54c4a8d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
# list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html

import os
import sys
from datetime import datetime

# -- Path setup --------------------------------------------------------------

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import os
import sys

sys.path.insert(0, os.path.abspath("../../"))

Expand All @@ -20,7 +21,7 @@
# -- Project information -----------------------------------------------------

project = "AI2 Tango"
copyright = "2021, Allen Institute for Artificial Intelligence"
copyright = f"{datetime.today().year}, Allen Institute for Artificial Intelligence"
author = "Allen Institute for Artificial Intelligence"
version = VERSION_SHORT
release = VERSION
Expand Down

0 comments on commit 54c4a8d

Please sign in to comment.