gac 1.10.0__tar.gz → 1.10.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.
Potentially problematic release.
This version of gac might be problematic. Click here for more details.
- {gac-1.10.0 → gac-1.10.1}/PKG-INFO +1 -2
- {gac-1.10.0 → gac-1.10.1}/pyproject.toml +0 -3
- {gac-1.10.0 → gac-1.10.1}/src/gac/__version__.py +1 -1
- {gac-1.10.0 → gac-1.10.1}/.gitignore +0 -0
- {gac-1.10.0 → gac-1.10.1}/LICENSE +0 -0
- {gac-1.10.0 → gac-1.10.1}/README.md +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/__init__.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/ai.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/ai_utils.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/cli.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/config.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/config_cli.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/constants.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/diff_cli.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/errors.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/git.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/init_cli.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/main.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/preprocess.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/prompt.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/__init__.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/anthropic.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/cerebras.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/chutes.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/fireworks.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/gemini.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/groq.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/lmstudio.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/ollama.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/openai.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/openrouter.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/streamlake.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/synthetic.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/providers/zai.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/security.py +0 -0
- {gac-1.10.0 → gac-1.10.1}/src/gac/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gac
|
|
3
|
-
Version: 1.10.
|
|
3
|
+
Version: 1.10.1
|
|
4
4
|
Summary: LLM-powered Git commit message generator with multi-provider support
|
|
5
5
|
Project-URL: Homepage, https://github.com/cellwebb/gac
|
|
6
6
|
Project-URL: Documentation, https://github.com/cellwebb/gac#readme
|
|
@@ -33,7 +33,6 @@ Requires-Dist: tiktoken>=0.12.0
|
|
|
33
33
|
Provides-Extra: dev
|
|
34
34
|
Requires-Dist: build; extra == 'dev'
|
|
35
35
|
Requires-Dist: codecov; extra == 'dev'
|
|
36
|
-
Requires-Dist: pre-commit; extra == 'dev'
|
|
37
36
|
Requires-Dist: pytest; extra == 'dev'
|
|
38
37
|
Requires-Dist: pytest-cov; extra == 'dev'
|
|
39
38
|
Requires-Dist: ruff; extra == 'dev'
|
|
@@ -61,7 +61,6 @@ dev = [
|
|
|
61
61
|
|
|
62
62
|
# Linting and formatting
|
|
63
63
|
"ruff",
|
|
64
|
-
"pre-commit",
|
|
65
64
|
|
|
66
65
|
# Release tools
|
|
67
66
|
"build",
|
|
@@ -150,7 +149,6 @@ dependencies = [
|
|
|
150
149
|
|
|
151
150
|
# Linting and formatting
|
|
152
151
|
"ruff",
|
|
153
|
-
"pre-commit",
|
|
154
152
|
]
|
|
155
153
|
|
|
156
154
|
[tool.hatch.envs.default.scripts]
|
|
@@ -232,6 +230,5 @@ dev = [
|
|
|
232
230
|
"pytest>=8.4.2",
|
|
233
231
|
"pytest-asyncio>=1.2.0",
|
|
234
232
|
"pytest-cov>=7.0.0",
|
|
235
|
-
"pre-commit",
|
|
236
233
|
"mypy>=1.8.0",
|
|
237
234
|
]
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|