crackerjack 0.15.0__py3-none-any.whl → 0.15.2__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/.gitignore +1 -2
- crackerjack/.pre-commit-config.yaml +8 -2
- crackerjack/.ruff_cache/0.11.2/4070660268492669020 +0 -0
- crackerjack/pyproject.toml +6 -6
- {crackerjack-0.15.0.dist-info → crackerjack-0.15.2.dist-info}/METADATA +6 -6
- {crackerjack-0.15.0.dist-info → crackerjack-0.15.2.dist-info}/RECORD +9 -9
- {crackerjack-0.15.0.dist-info → crackerjack-0.15.2.dist-info}/WHEEL +0 -0
- {crackerjack-0.15.0.dist-info → crackerjack-0.15.2.dist-info}/entry_points.txt +0 -0
- {crackerjack-0.15.0.dist-info → crackerjack-0.15.2.dist-info}/licenses/LICENSE +0 -0
crackerjack/.gitignore
CHANGED
@@ -1,8 +1,14 @@
|
|
1
1
|
repos:
|
2
2
|
- repo: https://github.com/pdm-project/pdm
|
3
|
-
rev: 2.
|
3
|
+
rev: 2.23.0 # a PDM release exposing the hook
|
4
4
|
hooks:
|
5
5
|
- id: pdm-lock-check
|
6
|
+
# - id: pdm-export
|
7
|
+
# args: [ '-o', 'requirements.txt', '--without-hashes' ]
|
8
|
+
# files: ^pdm.lock$
|
9
|
+
- id: pdm-sync
|
10
|
+
additional_dependencies:
|
11
|
+
- keyring
|
6
12
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
7
13
|
rev: v5.0.0
|
8
14
|
hooks:
|
@@ -26,7 +32,7 @@ repos:
|
|
26
32
|
hooks:
|
27
33
|
- id: vulture
|
28
34
|
- repo: https://github.com/fredrikaverpil/creosote
|
29
|
-
rev: v4.0.
|
35
|
+
rev: v4.0.2
|
30
36
|
hooks:
|
31
37
|
- id: creosote
|
32
38
|
- repo: https://github.com/ikamensh/flynt/
|
Binary file
|
crackerjack/pyproject.toml
CHANGED
@@ -149,7 +149,7 @@ pythonPlatform = "Darwin"
|
|
149
149
|
|
150
150
|
[project]
|
151
151
|
name = "crackerjack"
|
152
|
-
version = "0.
|
152
|
+
version = "0.15.1"
|
153
153
|
description = "Default template for PDM package"
|
154
154
|
requires-python = ">=3.13"
|
155
155
|
readme = "README.md"
|
@@ -178,15 +178,15 @@ dependencies = [
|
|
178
178
|
"autotyping>=24.9.0",
|
179
179
|
"pre-commit>=4.2.0",
|
180
180
|
"pytest>=8.3.5",
|
181
|
-
"pydantic>=2.
|
182
|
-
"pdm-bump>=0.9.
|
183
|
-
"pdm>=2.
|
184
|
-
"uv>=0.6.
|
181
|
+
"pydantic>=2.11.1",
|
182
|
+
"pdm-bump>=0.9.11.post2",
|
183
|
+
"pdm>=2.23.0",
|
184
|
+
"uv>=0.6.11",
|
185
185
|
"pytest-cov>=6.0.0",
|
186
186
|
"pytest-mock>=3.14.0",
|
187
187
|
"tomli-w>=1.2.0",
|
188
188
|
"pytest-asyncio>=0.26.0",
|
189
|
-
"rich>=
|
189
|
+
"rich>=14.0.0",
|
190
190
|
"typer>=0.15.2",
|
191
191
|
]
|
192
192
|
authors = [
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: crackerjack
|
3
|
-
Version: 0.15.
|
3
|
+
Version: 0.15.2
|
4
4
|
Summary: Default template for PDM package
|
5
5
|
Keywords: black,ruff,mypy,creosote,refurb
|
6
6
|
Author-Email: lesleslie <les@wedgwoodwebworks.com>
|
@@ -25,15 +25,15 @@ 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.
|
29
|
-
Requires-Dist: pdm-bump>=0.9.
|
30
|
-
Requires-Dist: pdm>=2.
|
31
|
-
Requires-Dist: uv>=0.6.
|
28
|
+
Requires-Dist: pydantic>=2.11.1
|
29
|
+
Requires-Dist: pdm-bump>=0.9.11.post2
|
30
|
+
Requires-Dist: pdm>=2.23.0
|
31
|
+
Requires-Dist: uv>=0.6.11
|
32
32
|
Requires-Dist: pytest-cov>=6.0.0
|
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
|
-
Requires-Dist: rich>=
|
36
|
+
Requires-Dist: rich>=14.0.0
|
37
37
|
Requires-Dist: typer>=0.15.2
|
38
38
|
Description-Content-Type: text/markdown
|
39
39
|
|
@@ -1,12 +1,12 @@
|
|
1
|
-
crackerjack-0.15.
|
2
|
-
crackerjack-0.15.
|
3
|
-
crackerjack-0.15.
|
4
|
-
crackerjack-0.15.
|
1
|
+
crackerjack-0.15.2.dist-info/METADATA,sha256=woufsC9zsCykAs2N0Cewc6HEAjq_4OclRDaIjubUpXI,12869
|
2
|
+
crackerjack-0.15.2.dist-info/WHEEL,sha256=thaaA2w1JzcGC48WYufAs8nrYZjJm8LqNfnXFOFyCC4,90
|
3
|
+
crackerjack-0.15.2.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
4
|
+
crackerjack-0.15.2.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
|
5
5
|
crackerjack/.coverage,sha256=dLzPzp72qZEXohNfxnOAlRwvM9dqF06-HoFqfvXZd1U,53248
|
6
|
-
crackerjack/.gitignore,sha256=
|
6
|
+
crackerjack/.gitignore,sha256=ts3GBu94chiwTyOCNCMHau9M8XGrd1yajyHPAMo_Z84,219
|
7
7
|
crackerjack/.libcst.codemod.yaml,sha256=a8DlErRAIPV1nE6QlyXPAzTOgkB24_spl2E9hphuf5s,772
|
8
8
|
crackerjack/.pdm.toml,sha256=dZe44HRcuxxCFESGG8SZIjmc-cGzSoyK3Hs6t4NYA8w,23
|
9
|
-
crackerjack/.pre-commit-config.yaml,sha256=
|
9
|
+
crackerjack/.pre-commit-config.yaml,sha256=XFZgjvyenUc5d5-BUouayatOkScEp0V3PrR9hSGuImc,2456
|
10
10
|
crackerjack/.pytest_cache/.gitignore,sha256=Ptcxtl0GFQwTji2tsL4Gl1UIiKa0frjEXsya26i46b0,37
|
11
11
|
crackerjack/.pytest_cache/CACHEDIR.TAG,sha256=N9yI75oKvt2-gQU6bdj9-xOvthMEXqHrSlyBWnSjveQ,191
|
12
12
|
crackerjack/.pytest_cache/README.md,sha256=c_1vzN2ALEGaay2YPWwxc7fal1WKxLWJ7ewt_kQ9ua0,302
|
@@ -19,7 +19,7 @@ crackerjack/.ruff_cache/0.1.4/10355199064880463147,sha256=kmqNg5WySQYPeAqa5elfaV
|
|
19
19
|
crackerjack/.ruff_cache/0.1.6/15140459877605758699,sha256=oQy5boAXeskdm5M0Abh_nyBtitWj5N5wtx_4gsDgu7c,248
|
20
20
|
crackerjack/.ruff_cache/0.1.7/1790508110482614856,sha256=De7Puq32XF0925xrGehWSKX6cw5Wi2bpt1cnqh__f54,248
|
21
21
|
crackerjack/.ruff_cache/0.1.9/17041001205004563469,sha256=tKP_k8HaHhQJyrHbDfJ93kM7vahjrU8cKQ1f_-OUzZY,248
|
22
|
-
crackerjack/.ruff_cache/0.11.2/4070660268492669020,sha256=
|
22
|
+
crackerjack/.ruff_cache/0.11.2/4070660268492669020,sha256=FTRTUmvj6nZw_QQBp_WHI-h3_iqRejzL39api-9wTvs,224
|
23
23
|
crackerjack/.ruff_cache/0.2.0/10047773857155985907,sha256=j9LNa_RQ4Plor7go1uTYgz17cEENKvZQ-dP6b9MX0ik,248
|
24
24
|
crackerjack/.ruff_cache/0.2.1/8522267973936635051,sha256=u_aPBMibtAp_iYvLwR88GMAECMcIgHezxMyuapmU2P4,248
|
25
25
|
crackerjack/.ruff_cache/0.2.2/18053836298936336950,sha256=Xb_ebP0pVuUfSqPEZKlhQ70so_vqkEfMYpuHQ06iR5U,248
|
@@ -50,5 +50,5 @@ crackerjack/.ruff_cache/CACHEDIR.TAG,sha256=WVMVbX4MVkpCclExbq8m-IcOZIOuIZf5FrYw
|
|
50
50
|
crackerjack/__init__.py,sha256=r9SuEjHUrW99hFWifRk4ofmYPSgf9rblcnzqhdV5bP0,157
|
51
51
|
crackerjack/__main__.py,sha256=iwoUyUB9j3e5lC5ViNAqW00eeoIx0xljNmWC04AiPaw,3707
|
52
52
|
crackerjack/crackerjack.py,sha256=alZ44ZldvqTpKo2RkAA0kq9RTueFeYeq__YbRlLN1Vg,22355
|
53
|
-
crackerjack/pyproject.toml,sha256=
|
54
|
-
crackerjack-0.15.
|
53
|
+
crackerjack/pyproject.toml,sha256=p6mM9mb58QbnqVhPy59c2B8ALmkoQmzxCGTe7JD5V8k,4095
|
54
|
+
crackerjack-0.15.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|