crackerjack 0.18.4__py3-none-any.whl → 0.18.7__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.
- crackerjack/.pre-commit-config.yaml +6 -6
- crackerjack/.ruff_cache/0.11.11/18187162184424859798 +0 -0
- crackerjack/pyproject.toml +6 -4
- {crackerjack-0.18.4.dist-info → crackerjack-0.18.7.dist-info}/METADATA +4 -4
- {crackerjack-0.18.4.dist-info → crackerjack-0.18.7.dist-info}/RECORD +8 -7
- {crackerjack-0.18.4.dist-info → crackerjack-0.18.7.dist-info}/WHEEL +0 -0
- {crackerjack-0.18.4.dist-info → crackerjack-0.18.7.dist-info}/entry_points.txt +0 -0
- {crackerjack-0.18.4.dist-info → crackerjack-0.18.7.dist-info}/licenses/LICENSE +0 -0
@@ -23,10 +23,10 @@ repos:
|
|
23
23
|
- id: check-added-large-files
|
24
24
|
name: check-added-large-files
|
25
25
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
26
|
-
rev: v0.11.
|
26
|
+
rev: v0.11.11
|
27
27
|
hooks:
|
28
28
|
- id: ruff-format
|
29
|
-
- id: ruff
|
29
|
+
- id: ruff-check
|
30
30
|
- repo: https://github.com/jendrikseipp/vulture
|
31
31
|
rev: 'v2.14'
|
32
32
|
hooks:
|
@@ -62,7 +62,7 @@ repos:
|
|
62
62
|
- autotyping>=24.3.0
|
63
63
|
- libcst>=1.1.0
|
64
64
|
- repo: https://github.com/dosisod/refurb
|
65
|
-
rev: v2.
|
65
|
+
rev: v2.1.0
|
66
66
|
hooks:
|
67
67
|
- id: refurb
|
68
68
|
- repo: https://github.com/PyCQA/bandit
|
@@ -71,13 +71,13 @@ repos:
|
|
71
71
|
- id: bandit
|
72
72
|
args: ["-c", "pyproject.toml"]
|
73
73
|
- repo: https://github.com/RobertCraigie/pyright-python
|
74
|
-
rev: v1.1.
|
74
|
+
rev: v1.1.401
|
75
75
|
hooks:
|
76
76
|
- id: pyright
|
77
77
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
78
|
-
rev: v0.11.
|
78
|
+
rev: v0.11.11
|
79
79
|
hooks:
|
80
|
-
- id: ruff
|
80
|
+
- id: ruff-check
|
81
81
|
- id: ruff-format
|
82
82
|
# - repo: https://github.com/pdoc3/pdoc
|
83
83
|
# rev: master
|
Binary file
|
crackerjack/pyproject.toml
CHANGED
@@ -67,6 +67,8 @@ extend-select = [
|
|
67
67
|
"C901",
|
68
68
|
"D",
|
69
69
|
]
|
70
|
+
fixable = ["ALL"]
|
71
|
+
unfixable = []
|
70
72
|
|
71
73
|
[tool.ruff.lint.isort]
|
72
74
|
no-lines-before = [
|
@@ -152,7 +154,7 @@ pythonPlatform = "Darwin"
|
|
152
154
|
|
153
155
|
[project]
|
154
156
|
name = "crackerjack"
|
155
|
-
version = "0.18.
|
157
|
+
version = "0.18.6"
|
156
158
|
description = "Default template for PDM package"
|
157
159
|
requires-python = ">=3.13"
|
158
160
|
readme = "README.md"
|
@@ -184,16 +186,16 @@ dependencies = [
|
|
184
186
|
"autotyping>=24.9.0",
|
185
187
|
"pre-commit>=4.2.0",
|
186
188
|
"pytest>=8.3.5",
|
187
|
-
"pydantic>=2.11.
|
189
|
+
"pydantic>=2.11.5",
|
188
190
|
"pdm-bump>=0.9.12",
|
189
191
|
"pdm>=2.24.1",
|
190
|
-
"uv>=0.7.
|
192
|
+
"uv>=0.7.7",
|
191
193
|
"pytest-cov>=6.1.1",
|
192
194
|
"pytest-mock>=3.14.0",
|
193
195
|
"tomli-w>=1.2.0",
|
194
196
|
"pytest-asyncio>=0.26.0",
|
195
197
|
"rich>=14.0.0",
|
196
|
-
"typer>=0.15.
|
198
|
+
"typer>=0.15.4",
|
197
199
|
"pytest-timeout>=2.4.0",
|
198
200
|
]
|
199
201
|
authors = [
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: crackerjack
|
3
|
-
Version: 0.18.
|
3
|
+
Version: 0.18.7
|
4
4
|
Summary: Default template for PDM package
|
5
5
|
Keywords: black,ruff,mypy,creosote,refurb,pyright,bandit,pytest
|
6
6
|
Author-Email: lesleslie <les@wedgwoodwebworks.com>
|
@@ -25,16 +25,16 @@ Requires-Python: >=3.13
|
|
25
25
|
Requires-Dist: autotyping>=24.9.0
|
26
26
|
Requires-Dist: pre-commit>=4.2.0
|
27
27
|
Requires-Dist: pytest>=8.3.5
|
28
|
-
Requires-Dist: pydantic>=2.11.
|
28
|
+
Requires-Dist: pydantic>=2.11.5
|
29
29
|
Requires-Dist: pdm-bump>=0.9.12
|
30
30
|
Requires-Dist: pdm>=2.24.1
|
31
|
-
Requires-Dist: uv>=0.7.
|
31
|
+
Requires-Dist: uv>=0.7.7
|
32
32
|
Requires-Dist: pytest-cov>=6.1.1
|
33
33
|
Requires-Dist: pytest-mock>=3.14.0
|
34
34
|
Requires-Dist: tomli-w>=1.2.0
|
35
35
|
Requires-Dist: pytest-asyncio>=0.26.0
|
36
36
|
Requires-Dist: rich>=14.0.0
|
37
|
-
Requires-Dist: typer>=0.15.
|
37
|
+
Requires-Dist: typer>=0.15.4
|
38
38
|
Requires-Dist: pytest-timeout>=2.4.0
|
39
39
|
Description-Content-Type: text/markdown
|
40
40
|
|
@@ -1,11 +1,11 @@
|
|
1
|
-
crackerjack-0.18.
|
2
|
-
crackerjack-0.18.
|
3
|
-
crackerjack-0.18.
|
4
|
-
crackerjack-0.18.
|
1
|
+
crackerjack-0.18.7.dist-info/METADATA,sha256=fMZz-KHpW_gix35sZNPCxYm2dgDYxuXyuBjMlylSxr4,17769
|
2
|
+
crackerjack-0.18.7.dist-info/WHEEL,sha256=tSfRZzRHthuv7vxpI4aehrdN9scLjk-dCJkPLzkHxGg,90
|
3
|
+
crackerjack-0.18.7.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
4
|
+
crackerjack-0.18.7.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
|
5
5
|
crackerjack/.gitignore,sha256=oho3dNx7a7y36_y9AsalCkssU4in0MMsNAANWdc-h1c,153
|
6
6
|
crackerjack/.libcst.codemod.yaml,sha256=a8DlErRAIPV1nE6QlyXPAzTOgkB24_spl2E9hphuf5s,772
|
7
7
|
crackerjack/.pdm.toml,sha256=dZe44HRcuxxCFESGG8SZIjmc-cGzSoyK3Hs6t4NYA8w,23
|
8
|
-
crackerjack/.pre-commit-config.yaml,sha256=
|
8
|
+
crackerjack/.pre-commit-config.yaml,sha256=UllC_ZFO8hLQQ_hWv6ezna6pATzi9--8mn7R9010r0Y,2470
|
9
9
|
crackerjack/.pytest_cache/.gitignore,sha256=Ptcxtl0GFQwTji2tsL4Gl1UIiKa0frjEXsya26i46b0,37
|
10
10
|
crackerjack/.pytest_cache/CACHEDIR.TAG,sha256=N9yI75oKvt2-gQU6bdj9-xOvthMEXqHrSlyBWnSjveQ,191
|
11
11
|
crackerjack/.pytest_cache/README.md,sha256=c_1vzN2ALEGaay2YPWwxc7fal1WKxLWJ7ewt_kQ9ua0,302
|
@@ -18,6 +18,7 @@ crackerjack/.ruff_cache/0.1.4/10355199064880463147,sha256=kmqNg5WySQYPeAqa5elfaV
|
|
18
18
|
crackerjack/.ruff_cache/0.1.6/15140459877605758699,sha256=oQy5boAXeskdm5M0Abh_nyBtitWj5N5wtx_4gsDgu7c,248
|
19
19
|
crackerjack/.ruff_cache/0.1.7/1790508110482614856,sha256=De7Puq32XF0925xrGehWSKX6cw5Wi2bpt1cnqh__f54,248
|
20
20
|
crackerjack/.ruff_cache/0.1.9/17041001205004563469,sha256=tKP_k8HaHhQJyrHbDfJ93kM7vahjrU8cKQ1f_-OUzZY,248
|
21
|
+
crackerjack/.ruff_cache/0.11.11/18187162184424859798,sha256=0rnwDEXNmU5O2LA1F0oi45AlHHTD_sc10cnJnyZrsro,153
|
21
22
|
crackerjack/.ruff_cache/0.11.2/4070660268492669020,sha256=FTRTUmvj6nZw_QQBp_WHI-h3_iqRejzL39api-9wTvs,224
|
22
23
|
crackerjack/.ruff_cache/0.11.3/9818742842212983150,sha256=U-4mT__a-OljovvAJvv5M6X7TCMa3dReLXx3kTNGgwU,224
|
23
24
|
crackerjack/.ruff_cache/0.11.4/9818742842212983150,sha256=QF9j6-3MH_d0pDNotdbF2hlqCL66SxN8OLVKR3PZyZU,224
|
@@ -55,5 +56,5 @@ crackerjack/.ruff_cache/CACHEDIR.TAG,sha256=WVMVbX4MVkpCclExbq8m-IcOZIOuIZf5FrYw
|
|
55
56
|
crackerjack/__init__.py,sha256=r9SuEjHUrW99hFWifRk4ofmYPSgf9rblcnzqhdV5bP0,157
|
56
57
|
crackerjack/__main__.py,sha256=FDAcn9NYoQ7q01YDtdxUgKz3RloItUc-Z8x5kBGcemA,4557
|
57
58
|
crackerjack/crackerjack.py,sha256=TuH51ODFInE8U_9tqak6si4-UBm6Z5sKx0g22PQzVzg,33571
|
58
|
-
crackerjack/pyproject.toml,sha256=
|
59
|
-
crackerjack-0.18.
|
59
|
+
crackerjack/pyproject.toml,sha256=pQLYdPGUcnyMpkr17NaZEDFT9rae360BW7n-_s6vb_M,4278
|
60
|
+
crackerjack-0.18.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|