From 1ee8cde38b00e6c398643147abea5d9bf06df5b8 Mon Sep 17 00:00:00 2001 From: "Mark A. Miller" Date: Mon, 1 Jul 2024 12:43:42 -0400 Subject: [PATCH] forcing 0.0.2 release with documetnation --- llm_github/core.py | 6 ++++++ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/llm_github/core.py b/llm_github/core.py index efeddb7..a88f6ea 100644 --- a/llm_github/core.py +++ b/llm_github/core.py @@ -358,3 +358,9 @@ def process_discussions(discussions: List[Dict[str, Any]], keys_to_remove: List[ final_discussion = remove_keys_from_dict(cleaned_discussion, keys_to_remove) processed_discussions.append(final_discussion) return processed_discussions + + +def force_release() -> None: + """Force a release of the package to PyPI.""" + # This function is used for demonstration purposes and should not be used in production + pass diff --git a/pyproject.toml b/pyproject.toml index a63dda9..5668710 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "llm_github" -version = "0.0.1" +version = "0.0.2" description = "Tools for extracting knowledge from GitHub issues, PR comments, etc." authors = ["Mark Andrew Miller "] repository = "https://github.com/turbomam/llm-github"