crackerjack 0.8.19__py3-none-any.whl → 0.9.0__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.
@@ -1,10 +1,10 @@
1
1
  repos:
2
2
  - repo: https://github.com/pdm-project/pdm
3
- rev: 2.19.1 # a PDM release exposing the hook
3
+ rev: 2.19.3 # a PDM release exposing the hook
4
4
  hooks:
5
5
  - id: pdm-lock-check
6
6
  - repo: https://github.com/pre-commit/pre-commit-hooks
7
- rev: v4.6.0
7
+ rev: v5.0.0
8
8
  hooks:
9
9
  - id: trailing-whitespace
10
10
  name: trailing-whitespace
@@ -17,12 +17,16 @@ repos:
17
17
  - id: check-added-large-files
18
18
  name: check-added-large-files
19
19
  - repo: https://github.com/astral-sh/ruff-pre-commit
20
- rev: v0.6.7
20
+ rev: v0.7.1
21
21
  hooks:
22
22
  - id: ruff-format
23
23
  - id: ruff
24
+ - repo: https://github.com/jendrikseipp/vulture
25
+ rev: 'v2.13'
26
+ hooks:
27
+ - id: vulture
24
28
  - repo: https://github.com/fredrikaverpil/creosote
25
- rev: v3.0.2
29
+ rev: v3.1.0
26
30
  hooks:
27
31
  - id: creosote
28
32
  - repo: https://github.com/ikamensh/flynt/
@@ -61,11 +65,11 @@ repos:
61
65
  - id: bandit
62
66
  args: ["-c", "pyproject.toml"]
63
67
  - repo: https://github.com/RobertCraigie/pyright-python
64
- rev: v1.1.381
68
+ rev: v1.1.386
65
69
  hooks:
66
70
  - id: pyright
67
71
  - repo: https://github.com/astral-sh/ruff-pre-commit
68
- rev: v0.6.7
72
+ rev: v0.7.1
69
73
  hooks:
70
74
  - id: ruff
71
75
  - id: ruff-format
@@ -43,6 +43,11 @@ max-complexity = 12
43
43
  [tool.ruff.lint.pydocstyle]
44
44
  convention = "google"
45
45
 
46
+ [tool.vulture]
47
+ min_confidence = 84
48
+ paths = ["crackerjack",]
49
+ verbose = true
50
+
46
51
  [tool.creosote]
47
52
  paths = [
48
53
  "crackerjack",
@@ -100,7 +105,7 @@ pythonPlatform = "Darwin"
100
105
  [tool.pdm]
101
106
  [project]
102
107
  name = "Crackerjack"
103
- version = "0.8.18"
108
+ version = "0.8.20"
104
109
  description = "Crackerjack code style"
105
110
  requires-python = ">=3.12"
106
111
  readme = "README.md"
@@ -130,13 +135,13 @@ dependencies = [
130
135
  "aioconsole>=0.8.0",
131
136
  "inflection>=0.5.1",
132
137
  "autotyping>=24.9.0",
133
- "pre-commit>=3.8.0",
138
+ "pre-commit>=4.0.1",
134
139
  "pytest>=8.3.3",
135
140
  "pydantic>=2.9.2",
136
141
  "aiopath>=0.7.7",
137
- "acb>=0.6.29",
142
+ "acb>=0.6.32",
138
143
  "pdm-bump>=0.9.8",
139
- "pdm>=2.19.1",
144
+ "pdm>=2.19.3",
140
145
  ]
141
146
  authors = [
142
147
  { name = "lesleslie", email = "les@wedgwoodwebworks.com" },
@@ -1,9 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: Crackerjack
3
- Version: 0.8.19
3
+ Version: 0.9.0
4
4
  Summary: Crackerjack code style
5
5
  Keywords: black,ruff,mypy,creosote,refurb
6
- Home-page: https://github.com/lesleslie/crackerjack
7
6
  Author-Email: lesleslie <les@wedgwoodwebworks.com>
8
7
  Maintainer-Email: lesleslie <les@wedgwoodwebworks.com>
9
8
  License: BSD-3-Clause
@@ -19,21 +18,21 @@ Classifier: Topic :: Utilities
19
18
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
19
  Classifier: License :: OSI Approved :: BSD License
21
20
  Classifier: Typing :: Typed
22
- Project-URL: Homepage, https://github.com/lesleslie/crackerjack
23
- Project-URL: Documentation, https://github.com/lesleslie/crackerjack
24
- Project-URL: Repository, https://github.com/lesleslie/crackerjack
21
+ Project-URL: homepage, https://github.com/lesleslie/crackerjack
22
+ Project-URL: documentation, https://github.com/lesleslie/crackerjack
23
+ Project-URL: repository, https://github.com/lesleslie/crackerjack
25
24
  Requires-Python: >=3.12
26
25
  Requires-Dist: click>=8.1.7
27
26
  Requires-Dist: aioconsole>=0.8.0
28
27
  Requires-Dist: inflection>=0.5.1
29
28
  Requires-Dist: autotyping>=24.9.0
30
- Requires-Dist: pre-commit>=3.8.0
29
+ Requires-Dist: pre-commit>=4.0.1
31
30
  Requires-Dist: pytest>=8.3.3
32
31
  Requires-Dist: pydantic>=2.9.2
33
32
  Requires-Dist: aiopath>=0.7.7
34
- Requires-Dist: acb>=0.6.29
33
+ Requires-Dist: acb>=0.6.32
35
34
  Requires-Dist: pdm-bump>=0.9.8
36
- Requires-Dist: pdm>=2.19.1
35
+ Requires-Dist: pdm>=2.19.3
37
36
  Description-Content-Type: text/markdown
38
37
 
39
38
  # Crackerjack Python
@@ -1,10 +1,10 @@
1
- crackerjack-0.8.19.dist-info/METADATA,sha256=OLfMv1OoUJyoxw7xJk87-yoC-7uWi65suy6aUHoJ2IA,7753
2
- crackerjack-0.8.19.dist-info/WHEEL,sha256=Vza3XR51HW1KmFP0iIMUVYIvz0uQuKJpIXKYOBGQyFQ,90
3
- crackerjack-0.8.19.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
4
- crackerjack-0.8.19.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
1
+ crackerjack-0.9.0.dist-info/METADATA,sha256=lQQla7JhNmAuDo_DdCF5jW3WD60-luOlDnW6kbiRYV4,7700
2
+ crackerjack-0.9.0.dist-info/WHEEL,sha256=thaaA2w1JzcGC48WYufAs8nrYZjJm8LqNfnXFOFyCC4,90
3
+ crackerjack-0.9.0.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
4
+ crackerjack-0.9.0.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
5
5
  crackerjack/.gitignore,sha256=7qePRaD8q-U6oV3gvgAcwFF8GudcRGAWf-Z-0IDqMaE,207
6
6
  crackerjack/.libcst.codemod.yaml,sha256=a8DlErRAIPV1nE6QlyXPAzTOgkB24_spl2E9hphuf5s,772
7
- crackerjack/.pre-commit-config.yaml,sha256=fMS4MwxVVBLn4zJ3TTFNYHiLrC2IrWc4klNvpKkmSe4,2168
7
+ crackerjack/.pre-commit-config.yaml,sha256=xqxFHeO5qlN6-w5I3s4gWM5AuivZlR-xc6vBa_p-e7I,2266
8
8
  crackerjack/.ruff_cache/.gitignore,sha256=aEiIwOuxfzdCmLZe4oB1JsBmCUxwG8x-u-HBCV9JT8E,1
9
9
  crackerjack/.ruff_cache/0.1.11/3256171999636029978,sha256=-RLDsRf5uj09SyFQVzjwQ1HkTxjIRxNLLE24SEJxD4g,248
10
10
  crackerjack/.ruff_cache/0.1.14/602324811142551221,sha256=HIYvldb69IHdMzquAA8JpzU2RDT9shEB_dPvzyeFZ_g,248
@@ -28,9 +28,11 @@ crackerjack/.ruff_cache/0.6.2/1206147804896221174,sha256=Pk8jauJiK81gV1Ox8gp-oUn
28
28
  crackerjack/.ruff_cache/0.6.4/1206147804896221174,sha256=R7O7kFH1eaafsVBj8Tae7ByBULoSlEHITtnjGHZzdo4,224
29
29
  crackerjack/.ruff_cache/0.6.5/1206147804896221174,sha256=nnb6nWwDVgf1ka9tDmRNyrVOa5D0jWjXGo2SdIOrwE4,224
30
30
  crackerjack/.ruff_cache/0.6.7/3657366982708166874,sha256=MKU1_a_3BRoP6rKfsIyYJy3lzoXrYcsSw4y8y8ztLb8,224
31
+ crackerjack/.ruff_cache/0.6.9/285614542852677309,sha256=6FVRfczYzXuiY_uArIpjA5Tue579y7kFL7hgvebRU2I,224
32
+ crackerjack/.ruff_cache/0.7.1/285614542852677309,sha256=mOHKRzKoSvW-1sHtqI_LHWRt-mBinJ4rQRtp9Yqzv5I,224
31
33
  crackerjack/.ruff_cache/CACHEDIR.TAG,sha256=WVMVbX4MVkpCclExbq8m-IcOZIOuIZf5FrYw5Pk-Ma4,43
32
34
  crackerjack/__init__.py,sha256=AuglbbJHkUJ2GdvyT0ca35ntexo1RkT2V6DgypoFeEk,121
33
35
  crackerjack/__main__.py,sha256=W0KSo35_rmj_p4Zr2Q6FAvojiiPTmh5kjlggVNcOdac,1766
34
36
  crackerjack/crackerjack.py,sha256=aoknG7btKND58d0Gb1Hde02NME7J64r7wvwV2TmxZDo,8440
35
- crackerjack/pyproject.toml,sha256=2u15g-U-fv2LG10gvmK1a6z58QpCHk1xEzLGExdCWpA,2946
36
- crackerjack-0.8.19.dist-info/RECORD,,
37
+ crackerjack/pyproject.toml,sha256=tiDtDWrqoNDLz9AycGzNRRDulUxvKwLS_uXvagaS5x8,3022
38
+ crackerjack-0.9.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: pdm-backend (2.4.1)
2
+ Generator: pdm-backend (2.4.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any