git-copilot-commit 0.4.3__tar.gz → 0.4.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (18) hide show
  1. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/PKG-INFO +1 -1
  2. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/github_copilot.py +1 -12
  3. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/.github/workflows/ci.yml +0 -0
  4. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/.gitignore +0 -0
  5. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/.justfile +0 -0
  6. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/.python-version +0 -0
  7. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/LICENSE +0 -0
  8. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/README.md +0 -0
  9. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/pyproject.toml +0 -0
  10. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/__init__.py +0 -0
  11. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/cli.py +0 -0
  12. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/git.py +0 -0
  13. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/prompts/commit-message-generator-prompt.md +0 -0
  14. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/py.typed +0 -0
  15. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/settings.py +0 -0
  16. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/version.py +0 -0
  17. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/uv.lock +0 -0
  18. {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/vhs/demo.vhs +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-copilot-commit
3
- Version: 0.4.3
3
+ Version: 0.4.4
4
4
  Summary: Automatically generate and commit changes using copilot
5
5
  Author-email: Dheepak Krishnamurthy <1813121+kdheepak@users.noreply.github.com>
6
6
  License-File: LICENSE
@@ -1101,18 +1101,7 @@ def print_login_summary(
1101
1101
  console.print(Panel.fit(table, title="Login Summary"))
1102
1102
 
1103
1103
 
1104
- def login(
1105
- enterprise_domain: str | None = typer.Option(
1106
- None,
1107
- "--enterprise-domain",
1108
- help="GitHub Enterprise hostname. Omit for github.com.",
1109
- ),
1110
- force: bool = typer.Option(
1111
- False,
1112
- "--force",
1113
- help="Replace any cached Copilot credentials without prompting.",
1114
- ),
1115
- ) -> None:
1104
+ def login(enterprise_domain: str | None = None, force: bool = False) -> None:
1116
1105
  """Authenticate with GitHub and cache Copilot credentials locally."""
1117
1106
  normalized_domain = normalize_domain(enterprise_domain)
1118
1107
  if enterprise_domain and not normalized_domain: