dycw-pre-commit-hooks 0.13.6__py3-none-any.whl → 0.13.8__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 dycw-pre-commit-hooks might be problematic. Click here for more details.
- {dycw_pre_commit_hooks-0.13.6.dist-info → dycw_pre_commit_hooks-0.13.8.dist-info}/METADATA +4 -4
- {dycw_pre_commit_hooks-0.13.6.dist-info → dycw_pre_commit_hooks-0.13.8.dist-info}/RECORD +6 -6
- pre_commit_hooks/__init__.py +1 -1
- pre_commit_hooks/common.py +1 -1
- {dycw_pre_commit_hooks-0.13.6.dist-info → dycw_pre_commit_hooks-0.13.8.dist-info}/WHEEL +0 -0
- {dycw_pre_commit_hooks-0.13.6.dist-info → dycw_pre_commit_hooks-0.13.8.dist-info}/entry_points.txt +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dycw-pre-commit-hooks
|
|
3
|
-
Version: 0.13.
|
|
3
|
+
Version: 0.13.8
|
|
4
4
|
Author-email: Derek Wan <d.wan@icloud.com>
|
|
5
5
|
Requires-Python: >=3.12
|
|
6
|
-
Requires-Dist: click<8.
|
|
7
|
-
Requires-Dist: dycw-utilities<0.
|
|
6
|
+
Requires-Dist: click<8.4,>=8.3.0
|
|
7
|
+
Requires-Dist: dycw-utilities<0.169,>=0.168.3
|
|
8
8
|
Requires-Dist: gitpython<3.2,>=3.1.45
|
|
9
|
-
Requires-Dist: libcst<1.9,>=1.8.
|
|
9
|
+
Requires-Dist: libcst<1.9,>=1.8.5
|
|
10
10
|
Requires-Dist: loguru<0.8,>=0.7.3
|
|
11
11
|
Requires-Dist: more-itertools<10.9,>=10.8.0
|
|
12
12
|
Requires-Dist: orjson<3.12,>=3.11.3
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
pre_commit_hooks/__init__.py,sha256=
|
|
2
|
-
pre_commit_hooks/common.py,sha256=
|
|
1
|
+
pre_commit_hooks/__init__.py,sha256=ncggm8fiioMLZwiQUgpqfZBgn2bYbBjUXkSf3LU6AuU,59
|
|
2
|
+
pre_commit_hooks/common.py,sha256=ZClypoURLwURWBORPrsEeYYDwWNbRCTVjUwZMIYHNZE,4502
|
|
3
3
|
pre_commit_hooks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
pre_commit_hooks/check_submodules_updated/__init__.py,sha256=j-NrV-_l_47meqcMz-QxIUOyWloI3coQXXDKg1Jhwgs,900
|
|
5
5
|
pre_commit_hooks/check_submodules_updated/__main__.py,sha256=_-uQnuopAJQiHgoSLRMekYrVBbO9-rjP2s9cCC0u3jQ,161
|
|
@@ -17,7 +17,7 @@ pre_commit_hooks/run_bump_my_version/__init__.py,sha256=FhvLQEEoFm21_2c_12Loy_lc
|
|
|
17
17
|
pre_commit_hooks/run_bump_my_version/__main__.py,sha256=w2V3y61jrSau-zxjl8ciHtWPlJQwXbYxNJ2tGYVyI4s,156
|
|
18
18
|
pre_commit_hooks/tag_commits/__init__.py,sha256=6HWjXOcTd9gjiZwXmy2lIhZzru-zeRgbpEYxKi1z5sg,3294
|
|
19
19
|
pre_commit_hooks/tag_commits/__main__.py,sha256=qefgYw7LWbvmzZS45-ym6olS4cHqw1Emw2wlqZBXN_o,148
|
|
20
|
-
dycw_pre_commit_hooks-0.13.
|
|
21
|
-
dycw_pre_commit_hooks-0.13.
|
|
22
|
-
dycw_pre_commit_hooks-0.13.
|
|
23
|
-
dycw_pre_commit_hooks-0.13.
|
|
20
|
+
dycw_pre_commit_hooks-0.13.8.dist-info/METADATA,sha256=IC1sWC2OMfQL4qJh9wby0iWtpeVn2LZjcAzEsJ9S_K0,1177
|
|
21
|
+
dycw_pre_commit_hooks-0.13.8.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
22
|
+
dycw_pre_commit_hooks-0.13.8.dist-info/entry_points.txt,sha256=mpEGGgi0HF_ukOSex2k3_DnActXAj3rMtHv5uwO2sMI,450
|
|
23
|
+
dycw_pre_commit_hooks-0.13.8.dist-info/RECORD,,
|
pre_commit_hooks/__init__.py
CHANGED
pre_commit_hooks/common.py
CHANGED
|
@@ -102,7 +102,7 @@ def throttled_run[**P](
|
|
|
102
102
|
) -> bool:
|
|
103
103
|
"""Throttled run."""
|
|
104
104
|
hash_ = md5_hash(get_repo_root())
|
|
105
|
-
path = xdg_cache_home().joinpath(name, hash_)
|
|
105
|
+
path = xdg_cache_home().joinpath("pre-commit-hooks", name, hash_)
|
|
106
106
|
if run_every is not None:
|
|
107
107
|
min_date_time = get_now_local() - run_every
|
|
108
108
|
try:
|
|
File without changes
|
{dycw_pre_commit_hooks-0.13.6.dist-info → dycw_pre_commit_hooks-0.13.8.dist-info}/entry_points.txt
RENAMED
|
File without changes
|