Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

fix: copyright year #176

Merged
merged 1 commit into from
Feb 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@

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

import os
import sys

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import os
import sys
from datetime import datetime

sys.path.insert(0, os.path.abspath("../greenplumpython"))
sys.path.append(os.path.abspath("./extensions"))
Expand All @@ -21,7 +23,7 @@
# -- Project information -----------------------------------------------------

project = "GreenplumPython"
copyright = "2022, VMware"
copyright = f"{datetime.now().year}, VMware"
author = "VMware"


Expand Down