-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e0d5a3
commit 2a6d566
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
|
||
import os | ||
import sys | ||
from datetime import datetime | ||
|
||
import toml | ||
|
||
|
@@ -26,7 +27,7 @@ def get_version_name() -> str: | |
|
||
|
||
project = "Groundlight Python SDK" | ||
copyright = "2023, Groundlight AI <[email protected]>" | ||
copyright = f"{datetime.now().year}, Groundlight AI <[email protected]>" | ||
author = "Groundlight AI <[email protected]>" | ||
version = get_version_name() | ||
release = version | ||
|