crackerjack 0.10.3__py3-none-any.whl → 0.10.5__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 +7 -7
- crackerjack/.ruff_cache/0.8.4/16354268377385700367 +0 -0
- crackerjack/pyproject.toml +9 -8
- {crackerjack-0.10.3.dist-info → crackerjack-0.10.5.dist-info}/METADATA +8 -8
- {crackerjack-0.10.3.dist-info → crackerjack-0.10.5.dist-info}/RECORD +8 -7
- {crackerjack-0.10.3.dist-info → crackerjack-0.10.5.dist-info}/WHEEL +0 -0
- {crackerjack-0.10.3.dist-info → crackerjack-0.10.5.dist-info}/entry_points.txt +0 -0
- {crackerjack-0.10.3.dist-info → crackerjack-0.10.5.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
repos:
|
2
2
|
- repo: https://github.com/pdm-project/pdm
|
3
|
-
rev: 2.
|
3
|
+
rev: 2.22.1 # 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
|
@@ -17,16 +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.
|
20
|
+
rev: v0.8.4
|
21
21
|
hooks:
|
22
22
|
- id: ruff-format
|
23
23
|
- id: ruff
|
24
24
|
- repo: https://github.com/jendrikseipp/vulture
|
25
|
-
rev: 'v2.
|
25
|
+
rev: 'v2.14'
|
26
26
|
hooks:
|
27
27
|
- id: vulture
|
28
28
|
- repo: https://github.com/fredrikaverpil/creosote
|
29
|
-
rev: v3.
|
29
|
+
rev: v3.2.0
|
30
30
|
hooks:
|
31
31
|
- id: creosote
|
32
32
|
- repo: https://github.com/ikamensh/flynt/
|
@@ -60,16 +60,16 @@ repos:
|
|
60
60
|
hooks:
|
61
61
|
- id: refurb
|
62
62
|
- repo: https://github.com/PyCQA/bandit
|
63
|
-
rev: '1.
|
63
|
+
rev: '1.8.0'
|
64
64
|
hooks:
|
65
65
|
- id: bandit
|
66
66
|
args: ["-c", "pyproject.toml"]
|
67
67
|
- repo: https://github.com/RobertCraigie/pyright-python
|
68
|
-
rev: v1.1.
|
68
|
+
rev: v1.1.391
|
69
69
|
hooks:
|
70
70
|
- id: pyright
|
71
71
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
72
|
-
rev: v0.
|
72
|
+
rev: v0.8.4
|
73
73
|
hooks:
|
74
74
|
- id: ruff
|
75
75
|
- id: ruff-format
|
Binary file
|
crackerjack/pyproject.toml
CHANGED
@@ -61,6 +61,7 @@ exclude-deps = [
|
|
61
61
|
"pyfiglet",
|
62
62
|
"pyyaml",
|
63
63
|
"uv",
|
64
|
+
"tomli-w",
|
64
65
|
]
|
65
66
|
|
66
67
|
[tool.refurb]
|
@@ -104,7 +105,7 @@ pythonPlatform = "Darwin"
|
|
104
105
|
|
105
106
|
[project]
|
106
107
|
name = "crackerjack"
|
107
|
-
version = "0.10.
|
108
|
+
version = "0.10.4"
|
108
109
|
description = "Default template for PDM package"
|
109
110
|
requires-python = ">=3.13"
|
110
111
|
readme = "README.md"
|
@@ -130,18 +131,18 @@ classifiers = [
|
|
130
131
|
"Typing :: Typed",
|
131
132
|
]
|
132
133
|
dependencies = [
|
133
|
-
"click>=8.1.
|
134
|
+
"click>=8.1.8",
|
134
135
|
"aioconsole>=0.8.1",
|
135
136
|
"inflection>=0.5.1",
|
136
137
|
"autotyping>=24.9.0",
|
137
138
|
"pre-commit>=4.0.1",
|
138
|
-
"pytest>=8.3.
|
139
|
-
"pydantic>=2.
|
139
|
+
"pytest>=8.3.4",
|
140
|
+
"pydantic>=2.10.4",
|
140
141
|
"aiopath>=0.7.7",
|
141
|
-
"pdm-bump>=0.9.
|
142
|
-
"pdm>=2.
|
143
|
-
"acb>=0.8.
|
144
|
-
"uv>=0.5.
|
142
|
+
"pdm-bump>=0.9.10",
|
143
|
+
"pdm>=2.22.1",
|
144
|
+
"acb>=0.8.9",
|
145
|
+
"uv>=0.5.13",
|
145
146
|
]
|
146
147
|
authors = [
|
147
148
|
{ name = "lesleslie", email = "les@wedgwoodwebworks.com" },
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: crackerjack
|
3
|
-
Version: 0.10.
|
3
|
+
Version: 0.10.5
|
4
4
|
Summary: Default template for PDM package
|
5
5
|
Keywords: black,ruff,mypy,creosote,refurb
|
6
6
|
Author-Email: lesleslie <les@wedgwoodwebworks.com>
|
@@ -22,18 +22,18 @@ Project-URL: homepage, https://github.com/lesleslie/crackerjack
|
|
22
22
|
Project-URL: documentation, https://github.com/lesleslie/crackerjack
|
23
23
|
Project-URL: repository, https://github.com/lesleslie/crackerjack
|
24
24
|
Requires-Python: >=3.13
|
25
|
-
Requires-Dist: click>=8.1.
|
25
|
+
Requires-Dist: click>=8.1.8
|
26
26
|
Requires-Dist: aioconsole>=0.8.1
|
27
27
|
Requires-Dist: inflection>=0.5.1
|
28
28
|
Requires-Dist: autotyping>=24.9.0
|
29
29
|
Requires-Dist: pre-commit>=4.0.1
|
30
|
-
Requires-Dist: pytest>=8.3.
|
31
|
-
Requires-Dist: pydantic>=2.
|
30
|
+
Requires-Dist: pytest>=8.3.4
|
31
|
+
Requires-Dist: pydantic>=2.10.4
|
32
32
|
Requires-Dist: aiopath>=0.7.7
|
33
|
-
Requires-Dist: pdm-bump>=0.9.
|
34
|
-
Requires-Dist: pdm>=2.
|
35
|
-
Requires-Dist: acb>=0.8.
|
36
|
-
Requires-Dist: uv>=0.5.
|
33
|
+
Requires-Dist: pdm-bump>=0.9.10
|
34
|
+
Requires-Dist: pdm>=2.22.1
|
35
|
+
Requires-Dist: acb>=0.8.9
|
36
|
+
Requires-Dist: uv>=0.5.13
|
37
37
|
Description-Content-Type: text/markdown
|
38
38
|
|
39
39
|
# Crackerjack Python
|
@@ -1,10 +1,10 @@
|
|
1
|
-
crackerjack-0.10.
|
2
|
-
crackerjack-0.10.
|
3
|
-
crackerjack-0.10.
|
4
|
-
crackerjack-0.10.
|
1
|
+
crackerjack-0.10.5.dist-info/METADATA,sha256=llK11ZeyEoOaNyrRKPHPHXwJ-mYWrBXGEJg9ktxHcvA,6309
|
2
|
+
crackerjack-0.10.5.dist-info/WHEEL,sha256=thaaA2w1JzcGC48WYufAs8nrYZjJm8LqNfnXFOFyCC4,90
|
3
|
+
crackerjack-0.10.5.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
4
|
+
crackerjack-0.10.5.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=
|
7
|
+
crackerjack/.pre-commit-config.yaml,sha256=GH6By4ttWryFTvBY8xXbbuMSXli-hNAh1owY1v3EkEo,2265
|
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
|
@@ -32,9 +32,10 @@ crackerjack/.ruff_cache/0.6.9/285614542852677309,sha256=6FVRfczYzXuiY_uArIpjA5Tu
|
|
32
32
|
crackerjack/.ruff_cache/0.7.1/1024065805990144819,sha256=3Sww592NB0PWBNHU_UIqvqgx33GEckEqKoFXxiu2wkA,224
|
33
33
|
crackerjack/.ruff_cache/0.7.1/285614542852677309,sha256=mOHKRzKoSvW-1sHtqI_LHWRt-mBinJ4rQRtp9Yqzv5I,224
|
34
34
|
crackerjack/.ruff_cache/0.7.3/16061516852537040135,sha256=AWJR9gmaO7-wpv8mY1homuwI8CrMPI3VrnbXH-wRPlg,224
|
35
|
+
crackerjack/.ruff_cache/0.8.4/16354268377385700367,sha256=Ksz4X8N6Z1i83N0vV1PxmBRlqgjrtzmDCOg7VBF4baQ,224
|
35
36
|
crackerjack/.ruff_cache/CACHEDIR.TAG,sha256=WVMVbX4MVkpCclExbq8m-IcOZIOuIZf5FrYw5Pk-Ma4,43
|
36
37
|
crackerjack/__init__.py,sha256=AuglbbJHkUJ2GdvyT0ca35ntexo1RkT2V6DgypoFeEk,121
|
37
38
|
crackerjack/__main__.py,sha256=W0KSo35_rmj_p4Zr2Q6FAvojiiPTmh5kjlggVNcOdac,1766
|
38
39
|
crackerjack/crackerjack.py,sha256=BkB3A5ukiUWNmNdREZvcpld2-p_a6kEkF3doj5cEw2Q,7811
|
39
|
-
crackerjack/pyproject.toml,sha256=
|
40
|
-
crackerjack-0.10.
|
40
|
+
crackerjack/pyproject.toml,sha256=Qk9wU_-LkNinh7NBlJByZTGDOM1Qvcnq9_ISiMthxEc,3055
|
41
|
+
crackerjack-0.10.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|