Skip to content

Commit

Permalink
always use current year for docs footer
Browse files Browse the repository at this point in the history
  • Loading branch information
PicoCentauri committed Mar 25, 2024
1 parent acb68a2 commit 8b63720
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/src/conf.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import datetime

# Add any Sphinx extension module names here, as strings.
extensions = [
"sphinx.ext.viewcode",
Expand All @@ -9,7 +11,11 @@
exclude_patterns = ["_build"]

project = "cosmo-software-cookbook"
copyright = "BSD 3-Clause License, Copyright (c) 2023, COSMO software cookbook team"
copyright = (
"BSD 3-Clause License, "
f"Copyright (c) {datetime.now().date().year}, "
"COSMO software cookbook team"
)

htmlhelp_basename = "COSMO software-cookbook"
html_theme = "furo"
Expand Down

0 comments on commit 8b63720

Please sign in to comment.