Skip to content

Commit

Permalink
feat(doc): use current year for copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua authored and florianfesti committed Mar 28, 2024
1 parent e60c8d7 commit e364cc0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion documentation/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@

import os
import sys
from datetime import datetime

sys.path.append(os.path.abspath('../..'))

# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = 'boxes.py'
project_copyright = '2023, Florian Festi'
project_copyright = datetime.now().year.__str__() + ', Florian Festi'
author = 'Florian Festi'

# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit e364cc0

Please sign in to comment.