Skip to content

Commit

Permalink
Merge pull request #84 from dextrot/year
Browse files Browse the repository at this point in the history
dynamically update copyright year in footer
  • Loading branch information
ocefpaf authored Feb 22, 2024
2 parents 9000d3e + c8a327f commit 399041c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,13 @@
# The master toctree document.
master_doc = "index"

from datetime import date

year = date.today().year

# General information about the project.
project = "gliderpy"
copyright = "2023, Filipe Fernandes"
copyright = f"{year}, Filipe Fernandes"
author = "Filipe Fernandes"

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

0 comments on commit 399041c

Please sign in to comment.