dycw-pre-commit-hooks 0.9.19__tar.gz → 0.9.23__tar.gz
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.
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/.github/workflows/push.yml +5 -2
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/.pre-commit-config.yaml +3 -3
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/PKG-INFO +2 -2
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pre_commit_hooks/__init__.py +1 -1
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pyproject.toml +1 -1
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/requirements.txt +19 -19
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/.envrc +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/.gitignore +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/.pre-commit-hooks.yaml +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/README.md +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pre_commit_hooks/common.py +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pre_commit_hooks/py.typed +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pre_commit_hooks/run_bump2version/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pre_commit_hooks/run_bump2version/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pre_commit_hooks/run_dockfmt/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pre_commit_hooks/run_dockfmt/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pre_commit_hooks/run_hatch_version/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pre_commit_hooks/run_hatch_version/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pre_commit_hooks/run_ruff_format/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pre_commit_hooks/run_ruff_format/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pre_commit_hooks/run_uv_pip_compile/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/pre_commit_hooks/run_uv_pip_compile/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/tests/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/tests/test_main.py +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/try-repo/run-bump2version.sh +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/try-repo/run-dockfmt.sh +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/try-repo/run-hatch-version.sh +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/try-repo/run-ruff-format.sh +0 -0
- {dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/try-repo/run-uv-pip-compile.sh +0 -0
|
@@ -23,8 +23,11 @@ jobs:
|
|
|
23
23
|
needs: tag
|
|
24
24
|
steps:
|
|
25
25
|
- uses: actions/checkout@v3
|
|
26
|
-
- run:
|
|
27
|
-
|
|
26
|
+
- run: |
|
|
27
|
+
python -m venv venv
|
|
28
|
+
source venv/bin/activate
|
|
29
|
+
python -m pip install --upgrade pip hatch
|
|
30
|
+
hatch build
|
|
28
31
|
- uses: actions/upload-artifact@v3
|
|
29
32
|
with:
|
|
30
33
|
name: artifacts
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
repos:
|
|
2
2
|
# fixers
|
|
3
3
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
4
|
-
rev: v0.6.
|
|
4
|
+
rev: v0.6.9
|
|
5
5
|
hooks:
|
|
6
6
|
- id: ruff
|
|
7
7
|
args: [--fix]
|
|
8
8
|
- id: ruff-format
|
|
9
9
|
- repo: https://github.com/dycw/pre-commit-hooks
|
|
10
|
-
rev: 0.9.
|
|
10
|
+
rev: 0.9.19
|
|
11
11
|
hooks:
|
|
12
12
|
- id: run-hatch-version
|
|
13
13
|
- id: run-ruff-format
|
|
@@ -27,7 +27,7 @@ repos:
|
|
|
27
27
|
hooks:
|
|
28
28
|
- id: prettier
|
|
29
29
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
30
|
-
rev:
|
|
30
|
+
rev: v5.0.0
|
|
31
31
|
hooks:
|
|
32
32
|
- id: check-executables-have-shebangs
|
|
33
33
|
- id: check-merge-conflict
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: dycw-pre-commit-hooks
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.23
|
|
4
4
|
Author-email: Derek Wan <d.wan@icloud.com>
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
6
|
Requires-Dist: click<8.2,>=8.1.7
|
|
7
|
-
Requires-Dist: dycw-utilities<0.
|
|
7
|
+
Requires-Dist: dycw-utilities<0.59,>=0.58.16
|
|
8
8
|
Requires-Dist: loguru<0.8,>=0.7.2
|
|
9
9
|
Requires-Dist: semver<3.1,>=3.0.2
|
|
10
10
|
Requires-Dist: tomlkit<0.14,>=0.13.2
|
|
@@ -9,7 +9,7 @@ requires = ["hatchling"]
|
|
|
9
9
|
authors = [{name = "Derek Wan", email = "d.wan@icloud.com"}]
|
|
10
10
|
dependencies = [
|
|
11
11
|
"click >= 8.1.7, < 8.2",
|
|
12
|
-
"dycw-utilities >= 0.
|
|
12
|
+
"dycw-utilities >= 0.58.16, < 0.59",
|
|
13
13
|
"loguru >= 0.7.2, < 0.8",
|
|
14
14
|
"semver >= 3.0.2, < 3.1",
|
|
15
15
|
"tomlkit >= 0.13.2, < 0.14",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This file was autogenerated by uv via the following command:
|
|
2
|
-
# uv pip compile --extra=dev --prerelease=
|
|
3
|
-
anyio==4.
|
|
2
|
+
# uv pip compile --extra=dev --prerelease=explicit --output-file=requirements.txt --python-version=3.11 pyproject.toml
|
|
3
|
+
anyio==4.6.0
|
|
4
4
|
# via httpx
|
|
5
5
|
attrs==24.2.0
|
|
6
6
|
# via hypothesis
|
|
@@ -15,13 +15,13 @@ click==8.1.7
|
|
|
15
15
|
# dycw-pre-commit-hooks (pyproject.toml)
|
|
16
16
|
# hatch
|
|
17
17
|
# userpath
|
|
18
|
-
distlib==0.3.
|
|
18
|
+
distlib==0.3.9
|
|
19
19
|
# via virtualenv
|
|
20
|
-
dycw-utilities==0.
|
|
20
|
+
dycw-utilities==0.58.16
|
|
21
21
|
# via dycw-pre-commit-hooks (pyproject.toml)
|
|
22
22
|
execnet==2.1.1
|
|
23
23
|
# via pytest-xdist
|
|
24
|
-
filelock==3.
|
|
24
|
+
filelock==3.16.1
|
|
25
25
|
# via virtualenv
|
|
26
26
|
h11==0.14.0
|
|
27
27
|
# via httpcore
|
|
@@ -29,20 +29,20 @@ hatch==1.12.0
|
|
|
29
29
|
# via dycw-pre-commit-hooks (pyproject.toml)
|
|
30
30
|
hatchling==1.25.0
|
|
31
31
|
# via hatch
|
|
32
|
-
httpcore==1.0.
|
|
32
|
+
httpcore==1.0.6
|
|
33
33
|
# via httpx
|
|
34
34
|
httpx==0.27.2
|
|
35
35
|
# via hatch
|
|
36
36
|
hyperlink==21.0.0
|
|
37
37
|
# via hatch
|
|
38
|
-
hypothesis==6.
|
|
38
|
+
hypothesis==6.112.5
|
|
39
39
|
# via dycw-utilities
|
|
40
|
-
idna==3.
|
|
40
|
+
idna==3.10
|
|
41
41
|
# via
|
|
42
42
|
# anyio
|
|
43
43
|
# httpx
|
|
44
44
|
# hyperlink
|
|
45
|
-
importlib-metadata==8.
|
|
45
|
+
importlib-metadata==8.5.0
|
|
46
46
|
# via keyring
|
|
47
47
|
iniconfig==2.0.0
|
|
48
48
|
# via pytest
|
|
@@ -50,9 +50,9 @@ jaraco-classes==3.4.0
|
|
|
50
50
|
# via keyring
|
|
51
51
|
jaraco-context==6.0.1
|
|
52
52
|
# via keyring
|
|
53
|
-
jaraco-functools==4.0
|
|
53
|
+
jaraco-functools==4.1.0
|
|
54
54
|
# via keyring
|
|
55
|
-
keyring==25.
|
|
55
|
+
keyring==25.4.1
|
|
56
56
|
# via hatch
|
|
57
57
|
loguru==0.7.2
|
|
58
58
|
# via dycw-pre-commit-hooks (pyproject.toml)
|
|
@@ -74,7 +74,7 @@ pathspec==0.12.1
|
|
|
74
74
|
# via hatchling
|
|
75
75
|
pexpect==4.9.0
|
|
76
76
|
# via hatch
|
|
77
|
-
platformdirs==4.
|
|
77
|
+
platformdirs==4.3.6
|
|
78
78
|
# via
|
|
79
79
|
# hatch
|
|
80
80
|
# virtualenv
|
|
@@ -86,7 +86,7 @@ ptyprocess==0.7.0
|
|
|
86
86
|
# via pexpect
|
|
87
87
|
pygments==2.18.0
|
|
88
88
|
# via rich
|
|
89
|
-
pytest==8.3.
|
|
89
|
+
pytest==8.3.3
|
|
90
90
|
# via
|
|
91
91
|
# dycw-utilities
|
|
92
92
|
# pytest-randomly
|
|
@@ -98,7 +98,7 @@ pytest-rerunfailures==14.0
|
|
|
98
98
|
# via dycw-utilities
|
|
99
99
|
pytest-xdist==3.6.1
|
|
100
100
|
# via dycw-utilities
|
|
101
|
-
rich==13.
|
|
101
|
+
rich==13.9.2
|
|
102
102
|
# via hatch
|
|
103
103
|
semver==3.0.2
|
|
104
104
|
# via dycw-pre-commit-hooks (pyproject.toml)
|
|
@@ -110,25 +110,25 @@ sniffio==1.3.1
|
|
|
110
110
|
# httpx
|
|
111
111
|
sortedcontainers==2.4.0
|
|
112
112
|
# via hypothesis
|
|
113
|
-
tomli-w==1.
|
|
113
|
+
tomli-w==1.1.0
|
|
114
114
|
# via hatch
|
|
115
115
|
tomlkit==0.13.2
|
|
116
116
|
# via
|
|
117
117
|
# dycw-pre-commit-hooks (pyproject.toml)
|
|
118
118
|
# hatch
|
|
119
|
-
trove-classifiers==2024.
|
|
119
|
+
trove-classifiers==2024.9.12
|
|
120
120
|
# via hatchling
|
|
121
121
|
typing-extensions==4.12.2
|
|
122
122
|
# via dycw-utilities
|
|
123
123
|
userpath==1.9.2
|
|
124
124
|
# via hatch
|
|
125
|
-
uv==0.4.
|
|
125
|
+
uv==0.4.20
|
|
126
126
|
# via hatch
|
|
127
|
-
virtualenv==20.26.
|
|
127
|
+
virtualenv==20.26.6
|
|
128
128
|
# via hatch
|
|
129
129
|
xdg-base-dirs==6.0.1
|
|
130
130
|
# via dycw-pre-commit-hooks (pyproject.toml)
|
|
131
|
-
zipp==3.20.
|
|
131
|
+
zipp==3.20.2
|
|
132
132
|
# via importlib-metadata
|
|
133
133
|
zstandard==0.23.0
|
|
134
134
|
# via hatch
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dycw_pre_commit_hooks-0.9.19 → dycw_pre_commit_hooks-0.9.23}/try-repo/run-uv-pip-compile.sh
RENAMED
|
File without changes
|