Skip to content

Commit

Permalink
Merge pull request #290 from ByteInternet/make-copyright-dynamic
Browse files Browse the repository at this point in the history
Make copyright dynamic in docs
  • Loading branch information
hrithikkothari1234 authored Nov 8, 2024
2 parents 8722ce2 + a35f3d6 commit f952d2a
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 @@ -5,6 +5,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html
import os
import sys
from datetime import datetime

# -- Path setup --------------------------------------------------------------

Expand All @@ -21,7 +22,8 @@
# -- Project information -----------------------------------------------------

project = "Docs"
copyright = "2023, Hypernode"
current_year = datetime.now().year
copyright = f"{current_year}, Hypernode"
author = "Hypernode"

# The full version, including alpha/beta/rc tags
Expand Down

0 comments on commit f952d2a

Please sign in to comment.