Skip to content

Commit

Permalink
Add current year to copyright message in RTD
Browse files Browse the repository at this point in the history
  • Loading branch information
KateFriedman-NOAA committed Mar 18, 2024
1 parent 70d9dfa commit 901adf0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@
import os
import sys
sys.path.insert(0, os.path.abspath('.'))

from datetime import datetime

# -- Project information -----------------------------------------------------

project = 'Global-workflow'
copyright = '2015- NOAA/NWS/NCEP/EMC'
year = datetime.now().year
copyright = f"2015-{year} NOAA/NWS/NCEP/EMC, Kate Friedman, Walter Kolczynski, Rahul Mahajan, Lin Gan"
author = 'Kate Friedman, Walter Kolczynski, Rahul Mahajan, Lin Gan'

# The full version, including alpha/beta/rc tags
Expand Down

0 comments on commit 901adf0

Please sign in to comment.