crackerjack 0.41.1__py3-none-any.whl → 0.41.3__py3-none-any.whl

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 crackerjack might be problematic. Click here for more details.

@@ -148,7 +148,7 @@ HOOKS_REGISTRY: dict[str, list[HookMetadata]] = {
148
148
  "id": "uv-lock",
149
149
  "name": None,
150
150
  "repo": "https://github.com/astral-sh/uv-pre-commit",
151
- "rev": "0.8.22",
151
+ "rev": "0.9.0",
152
152
  "tier": 1,
153
153
  "time_estimate": 0.5,
154
154
  "stages": None,
@@ -224,7 +224,7 @@ HOOKS_REGISTRY: dict[str, list[HookMetadata]] = {
224
224
  "id": "ruff-check",
225
225
  "name": None,
226
226
  "repo": "https://github.com/astral-sh/ruff-pre-commit",
227
- "rev": "v0.13.2",
227
+ "rev": "v0.14.0",
228
228
  "tier": 2,
229
229
  "time_estimate": 1.5,
230
230
  "stages": None,
@@ -242,7 +242,7 @@ HOOKS_REGISTRY: dict[str, list[HookMetadata]] = {
242
242
  "id": "ruff-format",
243
243
  "name": None,
244
244
  "repo": "https://github.com/astral-sh/ruff-pre-commit",
245
- "rev": "v0.13.2",
245
+ "rev": "v0.14.0",
246
246
  "tier": 2,
247
247
  "time_estimate": 1.0,
248
248
  "stages": None,
@@ -145,6 +145,10 @@ def validate_file(file_path: Path) -> list[tuple[int, str]]:
145
145
 
146
146
 
147
147
  def main(file_paths: list[str]) -> int:
148
+ if not file_paths:
149
+ print("✅ No Python files to validate")
150
+ return 0
151
+
148
152
  exit_code = 0
149
153
 
150
154
  for file_path_str in file_paths:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crackerjack
3
- Version: 0.41.1
3
+ Version: 0.41.3
4
4
  Summary: Crackerjack Python project management tool
5
5
  Project-URL: documentation, https://github.com/lesleslie/crackerjack
6
6
  Project-URL: homepage, https://github.com/lesleslie/crackerjack
@@ -164,14 +164,26 @@ Crackerjack is built on the following core principles:
164
164
  ### Install UV
165
165
 
166
166
  ```bash
167
+ # Recommended: Official installer script
168
+ curl -LsSf https://astral.sh/uv/install.sh | sh
169
+
170
+ # Alternative: Using pipx
167
171
  pipx install uv
172
+
173
+ # Alternative: Using Homebrew (macOS)
174
+ brew install uv
168
175
  ```
169
176
 
170
177
  ### Install Crackerjack
171
178
 
172
179
  ```bash
180
+ # Recommended: Using UV (fastest)
181
+ uv tool install crackerjack
182
+
183
+ # Alternative: Using pip
173
184
  pip install crackerjack
174
- # or
185
+
186
+ # For existing project: Add as dependency
175
187
  uv add crackerjack
176
188
  ```
177
189
 
@@ -557,10 +569,10 @@ Model Context Protocol (MCP) enables AI agents to interact directly with Cracker
557
569
 
558
570
  ### Setup MCP Server
559
571
 
560
- 1. **Install MCP dependencies:**
572
+ 1. **Install development dependencies (includes MCP tools):**
561
573
 
562
574
  ```bash
563
- uv sync --group mcp
575
+ uv sync --group dev
564
576
  ```
565
577
 
566
578
  1. **Start the MCP server:**
@@ -1199,7 +1211,7 @@ python -m crackerjack --start-mcp-server --verbose
1199
1211
  ## Contributing
1200
1212
 
1201
1213
  1. Fork and clone the repository
1202
- 1. Run `uv sync --all-groups` to install dependencies
1214
+ 1. Run `uv sync --group dev` to install dependencies
1203
1215
  1. Ensure `python -m crackerjack` passes all checks
1204
1216
  1. Submit pull request
1205
1217
 
@@ -2,7 +2,7 @@ crackerjack/__init__.py,sha256=DajG9zHB8qBdgdiKMumrrssUbKeMXmtIQ3oOaSTb46Y,1426
2
2
  crackerjack/__main__.py,sha256=jf-77hiq9_OVWFUN3qaX1eiuFEg-GMDRnszwyujx22I,59085
3
3
  crackerjack/api.py,sha256=PyCRaZHvKWdu62_2O4t_HcEfKNBdqyrfPdonS_PNn4c,21495
4
4
  crackerjack/code_cleaner.py,sha256=M1zVaq31uW0nOkPneKR8kfR3892gyyVx0VhFgRaxsj4,44338
5
- crackerjack/dynamic_config.py,sha256=X0KfFfu9vdMl8aCRnJ4qExaMvssPKNBv3NznUOVO0wo,21769
5
+ crackerjack/dynamic_config.py,sha256=dUj_2x7d4Wrr_C74dOtNcQfCRPpxuvHTx44fmTnXaGw,21768
6
6
  crackerjack/errors.py,sha256=yYbZ92kn_y6acEWgQvEPvozAYs2HT65uLwAXrtXxGsE,10049
7
7
  crackerjack/interactive.py,sha256=7hSyCfUxuzyvVUdkO1XsOfeQ5vAlTjIH_TB8o3af-9g,21990
8
8
  crackerjack/py313.py,sha256=TbzL6vJ8kf5GbuAFVjZ6wgfXnhcoLlzwATaFhV8HEVo,6256
@@ -235,13 +235,13 @@ crackerjack/slash_commands/run.md,sha256=yakoG1H0Wb9xvLokEdibpL524iHvsAqtEkJIuq_
235
235
  crackerjack/slash_commands/status.md,sha256=U3qqppVLtIIm2lEiMYaKagaHYLI9UplL7OH1j6SRJGw,3921
236
236
  crackerjack/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
237
237
  crackerjack/tools/validate_input_validator_patterns.py,sha256=NN7smYlXWrHLQXTb-81gRam2vjW-cJav92f1klPA0qA,8234
238
- crackerjack/tools/validate_regex_patterns.py,sha256=J7GG9EP1fASpRIsG8qRPeiCSkdCwmk0sdo29GgoJ6w8,5863
238
+ crackerjack/tools/validate_regex_patterns.py,sha256=jfC4z4wIJCHicKvhtMF8_-TFSf9uKHSkVslh6MAjmO8,5953
239
239
  crackerjack/ui/__init__.py,sha256=eMb1OeTU-dSLICAACn0YdYB4Amdr8wHckjKfn0wOIZE,37
240
240
  crackerjack/ui/server_panels.py,sha256=F5IH6SNN06BaZQMsFx_D-OA286aojmaFPJ5kvvSRv_c,4232
241
241
  crackerjack/workflows/__init__.py,sha256=jaJdTSPM_zKREXp7F6nUlk9tTrKHaWC8UqlXZbHBRkE,292
242
242
  crackerjack/workflows/auto_fix.py,sha256=q-3yQB_cHc-kgiG0BmPrwK-R3x3TJFqs63Uy5H9yKC0,16037
243
- crackerjack-0.41.1.dist-info/METADATA,sha256=Ai8PGZ2hwRBlwAregryeBfuiSlf_zV98hCSaTtgcfB4,43456
244
- crackerjack-0.41.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
245
- crackerjack-0.41.1.dist-info/entry_points.txt,sha256=AJKNft0WXm9xoGUJ3Trl-iXHOWxRAYbagQiza3AILr4,57
246
- crackerjack-0.41.1.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
247
- crackerjack-0.41.1.dist-info/RECORD,,
243
+ crackerjack-0.41.3.dist-info/METADATA,sha256=gWqRpEUiLIKNo42kFffqPGn9dSdC2hT24VTDIOOYeR0,43781
244
+ crackerjack-0.41.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
245
+ crackerjack-0.41.3.dist-info/entry_points.txt,sha256=AJKNft0WXm9xoGUJ3Trl-iXHOWxRAYbagQiza3AILr4,57
246
+ crackerjack-0.41.3.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
247
+ crackerjack-0.41.3.dist-info/RECORD,,