Skip to content

Commit

Permalink
make the docs copyright year automated
Browse files Browse the repository at this point in the history
  • Loading branch information
seperman committed Feb 4, 2025
1 parent 1acc825 commit ed25202
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

import sys
import os
import datetime
from dotenv import load_dotenv

# If extensions (or modules to document with autodoc) are in another directory,
Expand Down Expand Up @@ -52,8 +53,10 @@
master_doc = 'index'

# General information about the project.

year = datetime.datetime.now().year
project = 'DeepDiff'
copyright = '2015-2024, Sep Dehpour'
copyright = '2015-{}, Sep Dehpour'.format(year)
author = 'Sep Dehpour'

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

0 comments on commit ed25202

Please sign in to comment.