gac 1.10.0__tar.gz → 1.10.2__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 (36) hide show
  1. {gac-1.10.0 → gac-1.10.2}/PKG-INFO +1 -2
  2. {gac-1.10.0 → gac-1.10.2}/pyproject.toml +0 -3
  3. {gac-1.10.0 → gac-1.10.2}/src/gac/__version__.py +1 -1
  4. {gac-1.10.0 → gac-1.10.2}/.gitignore +0 -0
  5. {gac-1.10.0 → gac-1.10.2}/LICENSE +0 -0
  6. {gac-1.10.0 → gac-1.10.2}/README.md +0 -0
  7. {gac-1.10.0 → gac-1.10.2}/src/gac/__init__.py +0 -0
  8. {gac-1.10.0 → gac-1.10.2}/src/gac/ai.py +0 -0
  9. {gac-1.10.0 → gac-1.10.2}/src/gac/ai_utils.py +0 -0
  10. {gac-1.10.0 → gac-1.10.2}/src/gac/cli.py +0 -0
  11. {gac-1.10.0 → gac-1.10.2}/src/gac/config.py +0 -0
  12. {gac-1.10.0 → gac-1.10.2}/src/gac/config_cli.py +0 -0
  13. {gac-1.10.0 → gac-1.10.2}/src/gac/constants.py +0 -0
  14. {gac-1.10.0 → gac-1.10.2}/src/gac/diff_cli.py +0 -0
  15. {gac-1.10.0 → gac-1.10.2}/src/gac/errors.py +0 -0
  16. {gac-1.10.0 → gac-1.10.2}/src/gac/git.py +0 -0
  17. {gac-1.10.0 → gac-1.10.2}/src/gac/init_cli.py +0 -0
  18. {gac-1.10.0 → gac-1.10.2}/src/gac/main.py +0 -0
  19. {gac-1.10.0 → gac-1.10.2}/src/gac/preprocess.py +0 -0
  20. {gac-1.10.0 → gac-1.10.2}/src/gac/prompt.py +0 -0
  21. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/__init__.py +0 -0
  22. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/anthropic.py +0 -0
  23. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/cerebras.py +0 -0
  24. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/chutes.py +0 -0
  25. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/fireworks.py +0 -0
  26. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/gemini.py +0 -0
  27. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/groq.py +0 -0
  28. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/lmstudio.py +0 -0
  29. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/ollama.py +0 -0
  30. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/openai.py +0 -0
  31. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/openrouter.py +0 -0
  32. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/streamlake.py +0 -0
  33. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/synthetic.py +0 -0
  34. {gac-1.10.0 → gac-1.10.2}/src/gac/providers/zai.py +0 -0
  35. {gac-1.10.0 → gac-1.10.2}/src/gac/security.py +0 -0
  36. {gac-1.10.0 → gac-1.10.2}/src/gac/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gac
3
- Version: 1.10.0
3
+ Version: 1.10.2
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
  ]
@@ -1,3 +1,3 @@
1
1
  """Version information for gac package."""
2
2
 
3
- __version__ = "1.10.0"
3
+ __version__ = "1.10.2"
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