Skip to content

Commit

Permalink
Keep copyright up to date in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Alec Delaney committed Aug 23, 2022
1 parent 233af4c commit be885a6
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
Expand Up @@ -6,6 +6,7 @@

import os
import sys
import datetime

sys.path.insert(0, os.path.abspath(".."))

Expand Down Expand Up @@ -37,7 +38,8 @@

# General information about the project.
project = "Adafruit CircuitPython DotStar Library"
copyright = "2017 Scott Shawcroft, Limor Fried & Damien P. George"
current_year = str(datetime.datetime.now().year)
copyright = current_year + " Scott Shawcroft, Limor Fried & Damien P. George"
author = "Scott Shawcroft, Limor Fried & Damien P. George"

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

0 comments on commit be885a6

Please sign in to comment.