Skip to content

Commit

Permalink
update version for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickAlphaC committed Sep 11, 2024
1 parent aaafadc commit 265e838
Show file tree
Hide file tree
Showing 3 changed files with 151 additions and 151 deletions.
3 changes: 1 addition & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
project = "gaboon"
copyright = "2024, Patrick Collins, Charles Cooper"
author = "Patrick Collins, Charles Cooper"
release = "0.1.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down Expand Up @@ -56,4 +55,4 @@
smv_remote_whitelist = r"^origin$"
smv_branch_whitelist = r"^master$" # master is gross
smv_tag_whitelist = r"^v\d+\.\d+.\d+$"
version = gaboon.version() # TODO
version = gaboon.version()
4 changes: 2 additions & 2 deletions gaboon/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,8 @@ def get_version() -> str:
with open(
Path(__file__).resolve().parent.parent.joinpath("pyproject.toml"), "rb"
) as f:
boa_cli_data = tomllib.load(f)
return GAB_CLI_VERSION_STRING.format(boa_cli_data["project"]["version"])
gaboon_cli_data = tomllib.load(f)
return GAB_CLI_VERSION_STRING.format(gaboon_cli_data["project"]["version"])


def validate_generate_args(args):
Expand Down
Loading

0 comments on commit 265e838

Please sign in to comment.