Skip to content

Commit

Permalink
fix: update copyright year format to reflect the current year dynamic…
Browse files Browse the repository at this point in the history
…ally
  • Loading branch information
HarrisonKramer committed Jan 10, 2025
1 parent fcb4854 commit 89f07c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import os
import sys
from datetime import datetime


sys.path.insert(0, os.path.abspath('../'))
sys.path.insert(0, os.path.abspath('../optiland/'))

project = 'Optiland'
copyright = '2024-%Y, Kramer Harrison'
current_year = datetime.now().year
copyright = f'2024-{current_year}, Kramer Harrison'
author = 'Kramer Harrison'
release = '0.2.0'

Expand Down

0 comments on commit 89f07c3

Please sign in to comment.