git-copilot-commit 0.7.0__tar.gz → 0.7.1__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.
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/.config/mise.toml +1 -1
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/PKG-INFO +1 -1
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/git.py +23 -2
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/uv.lock +46 -46
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/.github/dependabot.yml +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/.github/workflows/ci.yml +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/.gitignore +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/.python-version +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/LICENSE +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/README.md +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/pyproject.toml +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/__init__.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/cli.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/llms/__init__.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/llms/copilot.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/llms/core.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/llms/openai_api.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/llms/providers.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/prompts/commit-message-generator-prompt.md +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/prompts/split-commit-planner-prompt.md +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/py.typed +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/settings.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/split_commits.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/version.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/tests/conftest.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/tests/test_cli.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/tests/test_git.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/tests/test_llm_and_copilot.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/tests/test_providers.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/tests/test_settings.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/tests/test_split_commits.py +0 -0
- {git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/vhs/demo.vhs +0 -0
|
@@ -71,7 +71,7 @@ git commit --allow-empty -m "chore(build): Bump version to $new_version"
|
|
|
71
71
|
git tag "$new_version"
|
|
72
72
|
|
|
73
73
|
echo "✓ Created commit and tag for $new_version"
|
|
74
|
-
echo " Run: 'mise run release $new_version'"
|
|
74
|
+
echo " Run: 'mise run git-copilot-commit:release $new_version'"
|
|
75
75
|
"""
|
|
76
76
|
|
|
77
77
|
[tasks."git-copilot-commit:release"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: git-copilot-commit
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.1
|
|
4
4
|
Summary: Automatically generate and commit changes using GitHub Copilot or OpenAI-compatible LLMs
|
|
5
5
|
Author-email: Dheepak Krishnamurthy <1813121+kdheepak@users.noreply.github.com>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -267,6 +267,20 @@ class GitRepository:
|
|
|
267
267
|
result = self._run_git_command(["rev-parse", ref])
|
|
268
268
|
return result.stdout.strip()
|
|
269
269
|
|
|
270
|
+
def get_tree_sha(self, ref: str = "HEAD") -> str:
|
|
271
|
+
"""Resolve a git ref to its tree SHA."""
|
|
272
|
+
result = self._run_git_command(["rev-parse", f"{ref}^{{tree}}"])
|
|
273
|
+
return result.stdout.strip()
|
|
274
|
+
|
|
275
|
+
def get_empty_tree_sha(self) -> str:
|
|
276
|
+
"""Create and return the repository's empty tree SHA."""
|
|
277
|
+
result = self._run_git_command(["mktree"], input_text="")
|
|
278
|
+
tree_sha = result.stdout.strip()
|
|
279
|
+
if tree_sha:
|
|
280
|
+
return tree_sha
|
|
281
|
+
|
|
282
|
+
raise GitCommandError("Git command failed: git mktree")
|
|
283
|
+
|
|
270
284
|
def has_commit(self, ref: str = "HEAD") -> bool:
|
|
271
285
|
"""Return whether the provided ref resolves to a commit."""
|
|
272
286
|
result = self._run_git_command(
|
|
@@ -530,12 +544,19 @@ class GitRepository:
|
|
|
530
544
|
use_editor: bool = False,
|
|
531
545
|
) -> str:
|
|
532
546
|
"""Create a commit from an alternate index using plumbing commands only."""
|
|
547
|
+
has_parent = self.has_commit("HEAD")
|
|
548
|
+
parent_refs = ("HEAD",) if has_parent else ()
|
|
549
|
+
base_tree_sha = (
|
|
550
|
+
self.get_tree_sha("HEAD") if has_parent else self.get_empty_tree_sha()
|
|
551
|
+
)
|
|
552
|
+
tree_sha = self.write_tree(env=index.env)
|
|
553
|
+
if tree_sha == base_tree_sha:
|
|
554
|
+
raise GitCommandError("No changes to commit")
|
|
555
|
+
|
|
533
556
|
commit_message = message
|
|
534
557
|
if use_editor:
|
|
535
558
|
commit_message = self.edit_commit_message(message, env=index.env)
|
|
536
559
|
|
|
537
|
-
parent_refs = ("HEAD",) if self.has_commit("HEAD") else ()
|
|
538
|
-
tree_sha = self.write_tree(env=index.env)
|
|
539
560
|
commit_sha = self.create_commit_object(
|
|
540
561
|
tree_sha,
|
|
541
562
|
message=commit_message,
|
|
@@ -196,11 +196,11 @@ wheels = [
|
|
|
196
196
|
|
|
197
197
|
[[package]]
|
|
198
198
|
name = "platformdirs"
|
|
199
|
-
version = "4.9.
|
|
199
|
+
version = "4.9.6"
|
|
200
200
|
source = { registry = "https://pypi.org/simple" }
|
|
201
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
201
|
+
sdist = { url = "https://files.pythonhosted.org/packages/9f/4a/0883b8e3802965322523f0b200ecf33d31f10991d0401162f4b23c698b42/platformdirs-4.9.6.tar.gz", hash = "sha256:3bfa75b0ad0db84096ae777218481852c0ebc6c727b3168c1b9e0118e458cf0a", size = 29400, upload-time = "2026-04-09T00:04:10.812Z" }
|
|
202
202
|
wheels = [
|
|
203
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
203
|
+
{ url = "https://files.pythonhosted.org/packages/75/a6/a0a304dc33b49145b21f4808d763822111e67d1c3a32b524a1baf947b6e1/platformdirs-4.9.6-py3-none-any.whl", hash = "sha256:e61adb1d5e5cb3441b4b7710bea7e4c12250ca49439228cc1021c00dcfac0917", size = 21348, upload-time = "2026-04-09T00:04:09.463Z" },
|
|
204
204
|
]
|
|
205
205
|
|
|
206
206
|
[[package]]
|
|
@@ -223,7 +223,7 @@ wheels = [
|
|
|
223
223
|
|
|
224
224
|
[[package]]
|
|
225
225
|
name = "pytest"
|
|
226
|
-
version = "9.0.
|
|
226
|
+
version = "9.0.3"
|
|
227
227
|
source = { registry = "https://pypi.org/simple" }
|
|
228
228
|
dependencies = [
|
|
229
229
|
{ name = "colorama", marker = "sys_platform == 'win32'" },
|
|
@@ -232,22 +232,22 @@ dependencies = [
|
|
|
232
232
|
{ name = "pluggy" },
|
|
233
233
|
{ name = "pygments" },
|
|
234
234
|
]
|
|
235
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
235
|
+
sdist = { url = "https://files.pythonhosted.org/packages/7d/0d/549bd94f1a0a402dc8cf64563a117c0f3765662e2e668477624baeec44d5/pytest-9.0.3.tar.gz", hash = "sha256:b86ada508af81d19edeb213c681b1d48246c1a91d304c6c81a427674c17eb91c", size = 1572165, upload-time = "2026-04-07T17:16:18.027Z" }
|
|
236
236
|
wheels = [
|
|
237
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
237
|
+
{ url = "https://files.pythonhosted.org/packages/d4/24/a372aaf5c9b7208e7112038812994107bc65a84cd00e0354a88c2c77a617/pytest-9.0.3-py3-none-any.whl", hash = "sha256:2c5efc453d45394fdd706ade797c0a81091eccd1d6e4bccfcd476e2b8e0ab5d9", size = 375249, upload-time = "2026-04-07T17:16:16.13Z" },
|
|
238
238
|
]
|
|
239
239
|
|
|
240
240
|
[[package]]
|
|
241
241
|
name = "rich"
|
|
242
|
-
version = "
|
|
242
|
+
version = "15.0.0"
|
|
243
243
|
source = { registry = "https://pypi.org/simple" }
|
|
244
244
|
dependencies = [
|
|
245
245
|
{ name = "markdown-it-py" },
|
|
246
246
|
{ name = "pygments" },
|
|
247
247
|
]
|
|
248
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
248
|
+
sdist = { url = "https://files.pythonhosted.org/packages/c0/8f/0722ca900cc807c13a6a0c696dacf35430f72e0ec571c4275d2371fca3e9/rich-15.0.0.tar.gz", hash = "sha256:edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b068c36", size = 230680, upload-time = "2026-04-12T08:24:00.75Z" }
|
|
249
249
|
wheels = [
|
|
250
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
250
|
+
{ url = "https://files.pythonhosted.org/packages/82/3b/64d4899d73f91ba49a8c18a8ff3f0ea8f1c1d75481760df8c68ef5235bf5/rich-15.0.0-py3-none-any.whl", hash = "sha256:33bd4ef74232fb73fe9279a257718407f169c09b78a87ad3d296f548e27de0bb", size = 310654, upload-time = "2026-04-12T08:24:02.83Z" },
|
|
251
251
|
]
|
|
252
252
|
|
|
253
253
|
[[package]]
|
|
@@ -265,27 +265,27 @@ wheels = [
|
|
|
265
265
|
|
|
266
266
|
[[package]]
|
|
267
267
|
name = "ruff"
|
|
268
|
-
version = "0.15.
|
|
268
|
+
version = "0.15.11"
|
|
269
269
|
source = { registry = "https://pypi.org/simple" }
|
|
270
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
270
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e4/8d/192f3d7103816158dfd5ea50d098ef2aec19194e6cbccd4b3485bdb2eb2d/ruff-0.15.11.tar.gz", hash = "sha256:f092b21708bf0e7437ce9ada249dfe688ff9a0954fc94abab05dcea7dcd29c33", size = 4637264, upload-time = "2026-04-16T18:46:26.58Z" }
|
|
271
271
|
wheels = [
|
|
272
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
273
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
274
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
275
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
276
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
277
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
278
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
279
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
280
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
281
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
282
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
283
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
284
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
285
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
286
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
287
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
288
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
272
|
+
{ url = "https://files.pythonhosted.org/packages/02/1e/6aca3427f751295ab011828e15e9bf452200ac74484f1db4be0197b8170b/ruff-0.15.11-py3-none-linux_armv6l.whl", hash = "sha256:e927cfff503135c558eb581a0c9792264aae9507904eb27809cdcff2f2c847b7", size = 10607943, upload-time = "2026-04-16T18:46:05.967Z" },
|
|
273
|
+
{ url = "https://files.pythonhosted.org/packages/e7/26/1341c262e74f36d4e84f3d6f4df0ac68cd53331a66bfc5080daa17c84c0b/ruff-0.15.11-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:7a1b5b2938d8f890b76084d4fa843604d787a912541eae85fd7e233398bbb73e", size = 10988592, upload-time = "2026-04-16T18:46:00.742Z" },
|
|
274
|
+
{ url = "https://files.pythonhosted.org/packages/03/71/850b1d6ffa9564fbb6740429bad53df1094082fe515c8c1e74b6d8d05f18/ruff-0.15.11-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d4176f3d194afbdaee6e41b9ccb1a2c287dba8700047df474abfbe773825d1cb", size = 10338501, upload-time = "2026-04-16T18:46:03.723Z" },
|
|
275
|
+
{ url = "https://files.pythonhosted.org/packages/f2/11/cc1284d3e298c45a817a6aadb6c3e1d70b45c9b36d8d9cce3387b495a03a/ruff-0.15.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b17c886fb88203ced3afe7f14e8d5ae96e9d2f4ccc0ee66aa19f2c2675a27e4", size = 10670693, upload-time = "2026-04-16T18:46:41.941Z" },
|
|
276
|
+
{ url = "https://files.pythonhosted.org/packages/ce/9e/f8288b034ab72b371513c13f9a41d9ba3effac54e24bfb467b007daee2ca/ruff-0.15.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:49fafa220220afe7758a487b048de4c8f9f767f37dfefad46b9dd06759d003eb", size = 10416177, upload-time = "2026-04-16T18:46:21.717Z" },
|
|
277
|
+
{ url = "https://files.pythonhosted.org/packages/85/71/504d79abfd3d92532ba6bbe3d1c19fada03e494332a59e37c7c2dabae427/ruff-0.15.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2ab8427e74a00d93b8bda1307b1e60970d40f304af38bccb218e056c220120d", size = 11221886, upload-time = "2026-04-16T18:46:15.086Z" },
|
|
278
|
+
{ url = "https://files.pythonhosted.org/packages/43/5a/947e6ab7a5ad603d65b474be15a4cbc6d29832db5d762cd142e4e3a74164/ruff-0.15.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:195072c0c8e1fc8f940652073df082e37a5d9cb43b4ab1e4d0566ab8977a13b7", size = 12075183, upload-time = "2026-04-16T18:46:07.944Z" },
|
|
279
|
+
{ url = "https://files.pythonhosted.org/packages/9f/a1/0b7bb6268775fdd3a0818aee8efd8f5b4e231d24dd4d528ced2534023182/ruff-0.15.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a3a0996d486af3920dec930a2e7daed4847dfc12649b537a9335585ada163e9e", size = 11516575, upload-time = "2026-04-16T18:46:31.687Z" },
|
|
280
|
+
{ url = "https://files.pythonhosted.org/packages/30/c3/bb5168fc4d233cc06e95f482770d0f3c87945a0cd9f614b90ea8dc2f2833/ruff-0.15.11-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bef2cb556d509259f1fe440bb9cd33c756222cf0a7afe90d15edf0866702431", size = 11306537, upload-time = "2026-04-16T18:46:36.988Z" },
|
|
281
|
+
{ url = "https://files.pythonhosted.org/packages/e4/92/4cfae6441f3967317946f3b788136eecf093729b94d6561f963ed810c82e/ruff-0.15.11-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:030d921a836d7d4a12cf6e8d984a88b66094ccb0e0f17ddd55067c331191bf19", size = 11296813, upload-time = "2026-04-16T18:46:24.182Z" },
|
|
282
|
+
{ url = "https://files.pythonhosted.org/packages/43/26/972784c5dde8313acde8ac71ba8ac65475b85db4a2352a76c9934361f9bc/ruff-0.15.11-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:0e783b599b4577788dbbb66b9addcef87e9a8832f4ce0c19e34bf55543a2f890", size = 10633136, upload-time = "2026-04-16T18:46:39.802Z" },
|
|
283
|
+
{ url = "https://files.pythonhosted.org/packages/5b/53/3985a4f185020c2f367f2e08a103032e12564829742a1b417980ce1514a0/ruff-0.15.11-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:ae90592246625ba4a34349d68ec28d4400d75182b71baa196ddb9f82db025ef5", size = 10424701, upload-time = "2026-04-16T18:46:10.381Z" },
|
|
284
|
+
{ url = "https://files.pythonhosted.org/packages/d3/57/bf0dfb32241b56c83bb663a826133da4bf17f682ba8c096973065f6e6a68/ruff-0.15.11-py3-none-musllinux_1_2_i686.whl", hash = "sha256:1f111d62e3c983ed20e0ca2e800f8d77433a5b1161947df99a5c2a3fb60514f0", size = 10873887, upload-time = "2026-04-16T18:46:29.157Z" },
|
|
285
|
+
{ url = "https://files.pythonhosted.org/packages/02/05/e48076b2a57dc33ee8c7a957296f97c744ca891a8ffb4ffb1aaa3b3f517d/ruff-0.15.11-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:06f483d6646f59eaffba9ae30956370d3a886625f511a3108994000480621d1c", size = 11404316, upload-time = "2026-04-16T18:46:19.462Z" },
|
|
286
|
+
{ url = "https://files.pythonhosted.org/packages/88/27/0195d15fe7a897cbcba0904792c4b7c9fdd958456c3a17d2ea6093716a9a/ruff-0.15.11-py3-none-win32.whl", hash = "sha256:476a2aa56b7da0b73a3ee80b6b2f0e19cce544245479adde7baa65466664d5f3", size = 10655535, upload-time = "2026-04-16T18:46:12.47Z" },
|
|
287
|
+
{ url = "https://files.pythonhosted.org/packages/3a/5e/c927b325bd4c1d3620211a4b96f47864633199feed60fa936025ab27e090/ruff-0.15.11-py3-none-win_amd64.whl", hash = "sha256:8b6756d88d7e234fb0c98c91511aae3cd519d5e3ed271cae31b20f39cb2a12a3", size = 11779692, upload-time = "2026-04-16T18:46:17.268Z" },
|
|
288
|
+
{ url = "https://files.pythonhosted.org/packages/63/b6/aeadee5443e49baa2facd51131159fd6301cc4ccfc1541e4df7b021c37dd/ruff-0.15.11-py3-none-win_arm64.whl", hash = "sha256:063fed18cc1bbe0ee7393957284a6fe8b588c6a406a285af3ee3f46da2391ee4", size = 11032614, upload-time = "2026-04-16T18:46:34.487Z" },
|
|
289
289
|
]
|
|
290
290
|
|
|
291
291
|
[[package]]
|
|
@@ -299,26 +299,26 @@ wheels = [
|
|
|
299
299
|
|
|
300
300
|
[[package]]
|
|
301
301
|
name = "ty"
|
|
302
|
-
version = "0.0.
|
|
302
|
+
version = "0.0.32"
|
|
303
303
|
source = { registry = "https://pypi.org/simple" }
|
|
304
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
304
|
+
sdist = { url = "https://files.pythonhosted.org/packages/85/7e/2aa791c9ae7b8cd5024cd4122e92267f664ca954cea3def3211919fa3c1f/ty-0.0.32.tar.gz", hash = "sha256:8743174c5f920f6700a4a0c9de140109189192ba16226884cd50095b43b8a45c", size = 5522294, upload-time = "2026-04-20T19:29:01.626Z" }
|
|
305
305
|
wheels = [
|
|
306
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
307
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
308
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
309
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
310
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
311
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
312
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
313
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
314
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
315
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
316
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
317
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
318
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
319
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
320
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
321
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
306
|
+
{ url = "https://files.pythonhosted.org/packages/62/eb/1075dc6a49d7acbe2584ae4d5b410c41b1f177a5adcc567e09eca4c69000/ty-0.0.32-py3-none-linux_armv6l.whl", hash = "sha256:dacbc2f6cd698d488ae7436838ff929570455bf94bfa4d9fe57a630c552aff83", size = 10902959, upload-time = "2026-04-20T19:28:31.907Z" },
|
|
307
|
+
{ url = "https://files.pythonhosted.org/packages/33/d2/c35fc8bc66e98d1ee9b0f8ed319bf743e450e1f1e997574b178fab75670f/ty-0.0.32-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:914bbc4f605ce2a9e2a78982e28fae1d3359a169d141f9dc3b4c7749cd5eca81", size = 10726172, upload-time = "2026-04-20T19:28:44.765Z" },
|
|
308
|
+
{ url = "https://files.pythonhosted.org/packages/96/32/c827da3ca480456fb02d8cea68a2609273b6c220fea0be9a4c8d8470b86e/ty-0.0.32-py3-none-macosx_11_0_arm64.whl", hash = "sha256:4787ac9fe1f86b1f3133f5c6732adbe2df5668b50c679ac6e2d98cd284da812f", size = 10163701, upload-time = "2026-04-20T19:28:27.005Z" },
|
|
309
|
+
{ url = "https://files.pythonhosted.org/packages/ba/9e/2734478fbdb90c160cb2813a3916a16a2af5c1e231f87d635f6131d781fb/ty-0.0.32-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8ea0a728af99fe40dd744cba6441a2404f80b7f4bde17aa6da393810af5ea57", size = 10656220, upload-time = "2026-04-20T19:29:03.814Z" },
|
|
310
|
+
{ url = "https://files.pythonhosted.org/packages/44/9f/0007da2d35e424debe7e9f86ffbc1ab7f60983cfbc5f0411324ab2de5292/ty-0.0.32-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2850561f9b018ae33d7e5bbfa0ac414d3c518513edcffe43877dc9801446b9c5", size = 10696086, upload-time = "2026-04-20T19:28:46.829Z" },
|
|
311
|
+
{ url = "https://files.pythonhosted.org/packages/3b/5e/ce5fd4ec803222ae3e69a76d2a2db2eed55e19f5b131702b9789ef45f93d/ty-0.0.32-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b5fa2fb3c614349ee211d36476b49d88c5ef79a687cdb91b2872ad023b94d2f8", size = 11184800, upload-time = "2026-04-20T19:28:42.57Z" },
|
|
312
|
+
{ url = "https://files.pythonhosted.org/packages/6c/46/ebcf67a5999421331214aac51a7464db42de2be15bbe929c612a3ed0b039/ty-0.0.32-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2b89969307ab2417d41c9be8059dd79feea577234e1e10d35132f5495e0d42c6", size = 11718718, upload-time = "2026-04-20T19:28:36.433Z" },
|
|
313
|
+
{ url = "https://files.pythonhosted.org/packages/18/2c/2141c86ed0ce0962b45cefb658a95e734f59759d47f20afdcd9c732910a1/ty-0.0.32-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b59868ede9b1d69a088f0d695df52a0061f95fa7baa1d5e0dc6fc9cf06e1334", size = 11346369, upload-time = "2026-04-20T19:28:48.967Z" },
|
|
314
|
+
{ url = "https://files.pythonhosted.org/packages/7a/da/ed6f772339cf29bd9a46def9d6db5084689eb574ee4d150ff704224c1ed8/ty-0.0.32-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8300caf35345498e9b9b03e550bba03cee8f5f5f8ab4c83c3b1ff1b7403b7d3a", size = 11280714, upload-time = "2026-04-20T19:28:51.516Z" },
|
|
315
|
+
{ url = "https://files.pythonhosted.org/packages/da/9b/c6813987edf4816a40e0c8e408b555f97d3f267c7b3a1688c8bbdf65609c/ty-0.0.32-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:583c7094f4574b02f724db924f98b804d1387a0bd9405ecb5e078cc0f47fbcfb", size = 10638806, upload-time = "2026-04-20T19:28:29.651Z" },
|
|
316
|
+
{ url = "https://files.pythonhosted.org/packages/4e/d4/0cefcbd2ad0f3d51762ccf58e652ec7da146eb6ae34f87228f6254bbb8be/ty-0.0.32-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:e44ebe1bb4143a5628bc4db67ac0dfebe14594af671e4ee66f6f2e983da56501", size = 10726106, upload-time = "2026-04-20T19:29:06.3Z" },
|
|
317
|
+
{ url = "https://files.pythonhosted.org/packages/32/ad/2c8a97f91f06311f4367400f7d13534bbda2522c73c99a3e4c0757dff9b8/ty-0.0.32-py3-none-musllinux_1_2_i686.whl", hash = "sha256:06f17ada3e069cba6148342ef88e9929156beca8473e8d4f101b68f66c75643e", size = 10872951, upload-time = "2026-04-20T19:28:34.077Z" },
|
|
318
|
+
{ url = "https://files.pythonhosted.org/packages/ba/68/42293f9248106dd51875120971a5cc6ea315c2c4dcfb8e59aa063aa0af26/ty-0.0.32-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:e96e60fa556cec04f15d7ea62d2ceee5982bd389233e961ab9fd42304e278175", size = 11363334, upload-time = "2026-04-20T19:28:54.036Z" },
|
|
319
|
+
{ url = "https://files.pythonhosted.org/packages/df/92/be9abf4d3e589ad5023e2ea965b93e204ec856420d46adf73c5c36c04678/ty-0.0.32-py3-none-win32.whl", hash = "sha256:2ff2ebb4986b24aebcf1444db7db5ca41b36086040e95eea9f8fb851c11e805c", size = 10260689, upload-time = "2026-04-20T19:28:56.541Z" },
|
|
320
|
+
{ url = "https://files.pythonhosted.org/packages/14/61/dc86acea899349d2579cb8419aecedd83dc504d7d6a10df65eef546c8300/ty-0.0.32-py3-none-win_amd64.whl", hash = "sha256:ba7284a4a954b598c1b31500352b3ec1f89bff533825592b5958848226fdc7ee", size = 11255371, upload-time = "2026-04-20T19:28:39.917Z" },
|
|
321
|
+
{ url = "https://files.pythonhosted.org/packages/43/01/beffec56d71ca25b343ede63adb076456b5b3e211f1c066452a44cd120b3/ty-0.0.32-py3-none-win_arm64.whl", hash = "sha256:7e10aadbdbda989a7d567ee6a37f8b98d4d542e31e3b190a2879fd581f75d658", size = 10658087, upload-time = "2026-04-20T19:28:59.286Z" },
|
|
322
322
|
]
|
|
323
323
|
|
|
324
324
|
[[package]]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/llms/__init__.py
RENAMED
|
File without changes
|
{git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/llms/copilot.py
RENAMED
|
File without changes
|
|
File without changes
|
{git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/llms/openai_api.py
RENAMED
|
File without changes
|
{git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/llms/providers.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{git_copilot_commit-0.7.0 → git_copilot_commit-0.7.1}/src/git_copilot_commit/split_commits.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|