dycw-pre-commit-hooks 0.9.4__tar.gz → 0.9.6__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.6/.envrc +3 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/.pre-commit-config.yaml +3 -2
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/PKG-INFO +1 -1
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/__init__.py +1 -1
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/run_uv_pip_compile/__init__.py +4 -6
- dycw_pre_commit_hooks-0.9.6/requirements.txt +163 -0
- dycw_pre_commit_hooks-0.9.4/.envrc +0 -1
- dycw_pre_commit_hooks-0.9.4/requirements.txt +0 -419
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/.github/workflows/push.yml +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/.gitignore +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/.pre-commit-hooks.yaml +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/.rgignore +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/README.md +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/common.py +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/py.typed +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/run_bump2version/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/run_bump2version/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/run_dockfmt/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/run_dockfmt/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/run_hatch_version/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/run_hatch_version/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/run_ruff_format/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/run_ruff_format/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/run_uv_pip_compile/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pyproject.toml +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/tests/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/tests/test_main.py +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/try-repo/run-bump2version.sh +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/try-repo/run-dockfmt.sh +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/try-repo/run-hatch-version.sh +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/try-repo/run-ruff-format.sh +0 -0
- {dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/try-repo/run-uv-pip-compile.sh +0 -0
|
@@ -4,16 +4,17 @@ default_language_version:
|
|
|
4
4
|
repos:
|
|
5
5
|
# fixers
|
|
6
6
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
7
|
-
rev: v0.
|
|
7
|
+
rev: v0.3.0
|
|
8
8
|
hooks:
|
|
9
9
|
- id: ruff
|
|
10
10
|
args: [--fix]
|
|
11
11
|
- repo: https://github.com/dycw/pre-commit-hooks
|
|
12
|
-
rev: 0.9.
|
|
12
|
+
rev: 0.9.5
|
|
13
13
|
hooks:
|
|
14
14
|
- id: run-hatch-version
|
|
15
15
|
- id: run-ruff-format
|
|
16
16
|
- id: run-uv-pip-compile
|
|
17
|
+
args: [--python-version=3.10]
|
|
17
18
|
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
|
|
18
19
|
rev: v2.12.0
|
|
19
20
|
hooks:
|
|
@@ -47,16 +47,14 @@ def _run_uv_pip_compile(*, python_version: str | None) -> str:
|
|
|
47
47
|
"pip",
|
|
48
48
|
"compile",
|
|
49
49
|
"--all-extras",
|
|
50
|
-
"--
|
|
51
|
-
"--no-emit-trusted-host",
|
|
52
|
-
f"--output-file={temp_file.as_posix()}",
|
|
50
|
+
"--quiet",
|
|
53
51
|
"--prerelease=disallow",
|
|
52
|
+
f"--output-file={temp_file.as_posix()}",
|
|
53
|
+
"--upgrade",
|
|
54
54
|
]
|
|
55
55
|
+ ([] if python_version is None else [f"--python-version={python_version}"])
|
|
56
56
|
+ [
|
|
57
|
-
"
|
|
58
|
-
"--upgrade",
|
|
59
|
-
"pyproject.toml", # don't use absolute path
|
|
57
|
+
"pyproject.toml" # don't use absolute path
|
|
60
58
|
]
|
|
61
59
|
)
|
|
62
60
|
try:
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
# This file was autogenerated by uv v0.1.2 via the following command:
|
|
2
|
+
# uv pip compile --all-extras --no-emit-index-url --no-emit-trusted-host --output-file=requirements.txt --prerelease=disallow --python-version=3.10 --quiet --upgrade pyproject.toml
|
|
3
|
+
anyio==4.3.0
|
|
4
|
+
# via httpx
|
|
5
|
+
atomicwrites==1.4.1
|
|
6
|
+
# via dycw-utilities
|
|
7
|
+
beartype==0.17.2
|
|
8
|
+
# via dycw-utilities
|
|
9
|
+
bidict==0.23.1
|
|
10
|
+
# via dycw-utilities
|
|
11
|
+
cachetools==5.3.3
|
|
12
|
+
# via dycw-utilities
|
|
13
|
+
certifi==2024.2.2
|
|
14
|
+
# via
|
|
15
|
+
# httpcore
|
|
16
|
+
# httpx
|
|
17
|
+
cfgv==3.4.0
|
|
18
|
+
# via pre-commit
|
|
19
|
+
click==8.1.7
|
|
20
|
+
# via
|
|
21
|
+
# dycw-utilities
|
|
22
|
+
# hatch
|
|
23
|
+
# userpath
|
|
24
|
+
distlib==0.3.8
|
|
25
|
+
# via virtualenv
|
|
26
|
+
dycw-utilities==0.24.40
|
|
27
|
+
editables==0.5
|
|
28
|
+
# via hatchling
|
|
29
|
+
exceptiongroup==1.2.0
|
|
30
|
+
# via
|
|
31
|
+
# anyio
|
|
32
|
+
# dycw-utilities
|
|
33
|
+
# pytest
|
|
34
|
+
execnet==2.0.2
|
|
35
|
+
# via pytest-xdist
|
|
36
|
+
filelock==3.13.1
|
|
37
|
+
# via virtualenv
|
|
38
|
+
frozendict==2.4.0
|
|
39
|
+
# via dycw-utilities
|
|
40
|
+
h11==0.14.0
|
|
41
|
+
# via httpcore
|
|
42
|
+
hatch==1.9.3
|
|
43
|
+
# via dycw-utilities
|
|
44
|
+
hatchling==1.21.1
|
|
45
|
+
# via hatch
|
|
46
|
+
httpcore==1.0.4
|
|
47
|
+
# via httpx
|
|
48
|
+
httpx==0.27.0
|
|
49
|
+
# via hatch
|
|
50
|
+
hyperlink==21.0.0
|
|
51
|
+
# via hatch
|
|
52
|
+
identify==2.5.35
|
|
53
|
+
# via pre-commit
|
|
54
|
+
idna==3.6
|
|
55
|
+
# via
|
|
56
|
+
# anyio
|
|
57
|
+
# httpx
|
|
58
|
+
# hyperlink
|
|
59
|
+
importlib-metadata==7.0.1
|
|
60
|
+
# via keyring
|
|
61
|
+
iniconfig==2.0.0
|
|
62
|
+
# via pytest
|
|
63
|
+
jaraco-classes==3.3.1
|
|
64
|
+
# via keyring
|
|
65
|
+
keyring==24.3.1
|
|
66
|
+
# via hatch
|
|
67
|
+
loguru==0.7.2
|
|
68
|
+
# via dycw-utilities
|
|
69
|
+
markdown-it-py==3.0.0
|
|
70
|
+
# via rich
|
|
71
|
+
mdurl==0.1.2
|
|
72
|
+
# via markdown-it-py
|
|
73
|
+
more-itertools==10.2.0
|
|
74
|
+
# via
|
|
75
|
+
# dycw-utilities
|
|
76
|
+
# jaraco-classes
|
|
77
|
+
nodeenv==1.8.0
|
|
78
|
+
# via pre-commit
|
|
79
|
+
packaging==23.2
|
|
80
|
+
# via
|
|
81
|
+
# hatch
|
|
82
|
+
# hatchling
|
|
83
|
+
# pytest
|
|
84
|
+
pathspec==0.12.1
|
|
85
|
+
# via hatchling
|
|
86
|
+
pathvalidate==3.2.0
|
|
87
|
+
# via dycw-utilities
|
|
88
|
+
pexpect==4.9.0
|
|
89
|
+
# via hatch
|
|
90
|
+
platformdirs==4.2.0
|
|
91
|
+
# via
|
|
92
|
+
# hatch
|
|
93
|
+
# virtualenv
|
|
94
|
+
pluggy==1.4.0
|
|
95
|
+
# via
|
|
96
|
+
# hatchling
|
|
97
|
+
# pytest
|
|
98
|
+
pre-commit==3.6.2
|
|
99
|
+
ptyprocess==0.7.0
|
|
100
|
+
# via pexpect
|
|
101
|
+
pygments==2.17.2
|
|
102
|
+
# via rich
|
|
103
|
+
pyhumps==3.8.0
|
|
104
|
+
# via dycw-utilities
|
|
105
|
+
pytest==8.0.2
|
|
106
|
+
# via
|
|
107
|
+
# dycw-utilities
|
|
108
|
+
# pytest-instafail
|
|
109
|
+
# pytest-only
|
|
110
|
+
# pytest-randomly
|
|
111
|
+
# pytest-xdist
|
|
112
|
+
pytest-instafail==0.5.0
|
|
113
|
+
# via dycw-utilities
|
|
114
|
+
pytest-only==2.0.0
|
|
115
|
+
# via dycw-utilities
|
|
116
|
+
pytest-randomly==3.15.0
|
|
117
|
+
# via dycw-utilities
|
|
118
|
+
pytest-xdist==3.5.0
|
|
119
|
+
# via dycw-utilities
|
|
120
|
+
pyyaml==6.0.1
|
|
121
|
+
# via pre-commit
|
|
122
|
+
rich==13.7.1
|
|
123
|
+
# via hatch
|
|
124
|
+
semver==3.0.2
|
|
125
|
+
# via dycw-utilities
|
|
126
|
+
setuptools==69.1.1
|
|
127
|
+
# via nodeenv
|
|
128
|
+
shellingham==1.5.4
|
|
129
|
+
# via hatch
|
|
130
|
+
sniffio==1.3.1
|
|
131
|
+
# via
|
|
132
|
+
# anyio
|
|
133
|
+
# httpx
|
|
134
|
+
tomli==2.0.1
|
|
135
|
+
# via
|
|
136
|
+
# hatchling
|
|
137
|
+
# pytest
|
|
138
|
+
# typed-settings
|
|
139
|
+
tomli-w==1.0.0
|
|
140
|
+
# via hatch
|
|
141
|
+
tomlkit==0.12.4
|
|
142
|
+
# via hatch
|
|
143
|
+
tqdm==4.66.2
|
|
144
|
+
# via dycw-utilities
|
|
145
|
+
trove-classifiers==2024.2.23
|
|
146
|
+
# via hatchling
|
|
147
|
+
typed-settings==24.1.0
|
|
148
|
+
# via dycw-utilities
|
|
149
|
+
typing-extensions==4.10.0
|
|
150
|
+
# via
|
|
151
|
+
# anyio
|
|
152
|
+
# dycw-utilities
|
|
153
|
+
userpath==1.9.2
|
|
154
|
+
# via hatch
|
|
155
|
+
virtualenv==20.25.1
|
|
156
|
+
# via
|
|
157
|
+
# hatch
|
|
158
|
+
# pre-commit
|
|
159
|
+
xdg-base-dirs==6.0.1
|
|
160
|
+
zipp==3.17.0
|
|
161
|
+
# via importlib-metadata
|
|
162
|
+
zstandard==0.22.0
|
|
163
|
+
# via hatch
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
layout pyenv 3.10.13
|
|
@@ -1,419 +0,0 @@
|
|
|
1
|
-
# This file was autogenerated by uv v0.1.2 via the following command:
|
|
2
|
-
# uv pip compile --all-extras --generate-hashes --no-emit-index-url --no-emit-trusted-host --output-file=requirements.txt --prerelease=disallow --quiet --upgrade pyproject.toml
|
|
3
|
-
anyio==4.2.0 \
|
|
4
|
-
--hash=sha256:745843b39e829e108e518c489b31dc757de7d2131d53fac32bd8df268227bfee \
|
|
5
|
-
--hash=sha256:e1875bb4b4e2de1669f4bc7869b6d3f54231cdced71605e6e64c9be77e3be50f
|
|
6
|
-
# via httpx
|
|
7
|
-
atomicwrites==1.4.1 \
|
|
8
|
-
--hash=sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11
|
|
9
|
-
# via dycw-utilities
|
|
10
|
-
beartype==0.17.2 \
|
|
11
|
-
--hash=sha256:c22b21e1f785cfcf5c4d3d13070f532b6243a3ad67e68d2298ff08d539847dce \
|
|
12
|
-
--hash=sha256:e911e1ae7de4bccd15745f7643609d8732f64de5c2fb844e89cbbed1c5a8d495
|
|
13
|
-
# via dycw-utilities
|
|
14
|
-
bidict==0.23.0 \
|
|
15
|
-
--hash=sha256:3959ca59d4d6997702d642bf1e5fd93cba299863723fc289545198f70c468578 \
|
|
16
|
-
--hash=sha256:f5154a0e42926b122f9b2cb06aeeb9af317f626eb864bd34c1b9cdc5eca8b040
|
|
17
|
-
# via dycw-utilities
|
|
18
|
-
cachetools==5.3.2 \
|
|
19
|
-
--hash=sha256:086ee420196f7b2ab9ca2db2520aca326318b68fe5ba8bc4d49cca91add450f2 \
|
|
20
|
-
--hash=sha256:861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1
|
|
21
|
-
# via dycw-utilities
|
|
22
|
-
certifi==2024.2.2 \
|
|
23
|
-
--hash=sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f \
|
|
24
|
-
--hash=sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1
|
|
25
|
-
# via
|
|
26
|
-
# httpcore
|
|
27
|
-
# httpx
|
|
28
|
-
cfgv==3.4.0 \
|
|
29
|
-
--hash=sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9 \
|
|
30
|
-
--hash=sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560
|
|
31
|
-
# via pre-commit
|
|
32
|
-
click==8.1.7 \
|
|
33
|
-
--hash=sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28 \
|
|
34
|
-
--hash=sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de
|
|
35
|
-
# via
|
|
36
|
-
# dycw-utilities
|
|
37
|
-
# hatch
|
|
38
|
-
# userpath
|
|
39
|
-
distlib==0.3.8 \
|
|
40
|
-
--hash=sha256:034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784 \
|
|
41
|
-
--hash=sha256:1530ea13e350031b6312d8580ddb6b27a104275a31106523b8f123787f494f64
|
|
42
|
-
# via virtualenv
|
|
43
|
-
dycw-utilities==0.24.37 \
|
|
44
|
-
--hash=sha256:0fb555f61bbd071ac3c5ab205643a113184d0453eb6a810106fb77e4c938e0d5 \
|
|
45
|
-
--hash=sha256:c9b90975eb9c582139222259263ae6d3ba236291d5edfda132919c96b49993bf
|
|
46
|
-
editables==0.5 \
|
|
47
|
-
--hash=sha256:309627d9b5c4adc0e668d8c6fa7bac1ba7c8c5d415c2d27f60f081f8e80d1de2 \
|
|
48
|
-
--hash=sha256:61e5ffa82629e0d8bfe09bc44a07db3c1ab8ed1ce78a6980732870f19b5e7d4c
|
|
49
|
-
# via hatchling
|
|
50
|
-
exceptiongroup==1.2.0 \
|
|
51
|
-
--hash=sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14 \
|
|
52
|
-
--hash=sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68
|
|
53
|
-
# via
|
|
54
|
-
# anyio
|
|
55
|
-
# dycw-utilities
|
|
56
|
-
# pytest
|
|
57
|
-
execnet==2.0.2 \
|
|
58
|
-
--hash=sha256:88256416ae766bc9e8895c76a87928c0012183da3cc4fc18016e6f050e025f41 \
|
|
59
|
-
--hash=sha256:cc59bc4423742fd71ad227122eb0dd44db51efb3dc4095b45ac9a08c770096af
|
|
60
|
-
# via pytest-xdist
|
|
61
|
-
filelock==3.13.1 \
|
|
62
|
-
--hash=sha256:521f5f56c50f8426f5e03ad3b281b490a87ef15bc6c526f168290f0c7148d44e \
|
|
63
|
-
--hash=sha256:57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c
|
|
64
|
-
# via virtualenv
|
|
65
|
-
frozendict==2.4.0 \
|
|
66
|
-
--hash=sha256:05c5a77957ecba4286c7ab33861a8f4f2badc7ea86fc82b834fb360d3aa4c108 \
|
|
67
|
-
--hash=sha256:0615ed71570eec3cc96df063930ea6e563211efeeac86e3f3cc8bdfc9c9bfab7 \
|
|
68
|
-
--hash=sha256:08d9c7c1aa92b94538b3a79c43999f999012e174588435f197794d5e5a80e0f5 \
|
|
69
|
-
--hash=sha256:09ba8ee37d260adde311b8eb4cd12bf27f64071242f736757ae6a11d331eb860 \
|
|
70
|
-
--hash=sha256:0b75e5e231621dedaef88334997e79fbd137dd89895543d3862fe0220fc3572c \
|
|
71
|
-
--hash=sha256:1875e7b70a5724bf964354da8fd542240d2cead0d80053ac96bf4494ce3517fa \
|
|
72
|
-
--hash=sha256:204f2c5c10fc018d1ba8ccc67758aa83fe769c782547bd26dc250317a7ccba71 \
|
|
73
|
-
--hash=sha256:23a52bbea30c9e35b89291273944393770fb031e522a172e3aff19b62cc50047 \
|
|
74
|
-
--hash=sha256:2607e82efdd2c277224a58bda3994d4cd48e49eff7fa31e404cf3066e8dbfeae \
|
|
75
|
-
--hash=sha256:2804ea4bd2179bb33b99483cc8d69246630cc00632b9affe2914e8666f1cc7e5 \
|
|
76
|
-
--hash=sha256:2fd4583194baabe100c135883017da76259a315d34e303eddf198541b7e02e44 \
|
|
77
|
-
--hash=sha256:3909df909516cfd7bcefd9a3003948970a12a50c5648d8bbddafcef171f2117f \
|
|
78
|
-
--hash=sha256:42a9b33ccf9d417b22146e59803c53d5c39d7d9151d2df8df59c235f6a1a5ed7 \
|
|
79
|
-
--hash=sha256:475c65202a6f5421df8cacb8a2f29c5087134a0542b0540ae95fbf4db7af2ff9 \
|
|
80
|
-
--hash=sha256:4925c8e82d2bd23d45996cd0827668a52b9c51103897c98ce409a763d0c00c61 \
|
|
81
|
-
--hash=sha256:5bb5b62d4e2bce12e91800496d94de41bec8f16e4d8a7b16e8f263676ae2031a \
|
|
82
|
-
--hash=sha256:809f1cffb602cf06e5186c69c0e3b74bec7a3684593145331f9aa2a65b5ba3b7 \
|
|
83
|
-
--hash=sha256:8fab616e7c0fea2ac928f107c740bd9ba516fc083adfcd1c391d6bfc9164403d \
|
|
84
|
-
--hash=sha256:9e530658134e88607ff8c2c8934a07b2bb5e9fffab5045f127746f6542c6c77e \
|
|
85
|
-
--hash=sha256:9fc4cba1ced988ce9020dfcaae6fe3f5521eebc00c5772b511aaf691b0be91e6 \
|
|
86
|
-
--hash=sha256:a1d232f092dc686e6ef23d436bde30f82c018f31cef1b89b31caef03814b1617 \
|
|
87
|
-
--hash=sha256:a3f51bfa64e0c4a6608e3f2878bab1211a6b3b197de6fa57151bbe73f1184457 \
|
|
88
|
-
--hash=sha256:a60f353496637ca21396289a7d969af1eb4ec4d11a7c37a0e7f25fc1761a0c97 \
|
|
89
|
-
--hash=sha256:aa86325da6a6071284b4ed3d9d2cd9db068560aebad503b658d6a889a0575683 \
|
|
90
|
-
--hash=sha256:b017cba5f73869b04c2977139ad08e57a7480de1e384c34193939698119baa1d \
|
|
91
|
-
--hash=sha256:b666f9c6c8a9e794d2713a944b10a65480ff459579d75b5f686c75031c2c2dfc \
|
|
92
|
-
--hash=sha256:bd4700c3f0aebdc8f4375c35590135794b1dbf2aca132f4756b584fa9910af2d \
|
|
93
|
-
--hash=sha256:c26758198e403337933a92b01f417a8240c954f553e1d4b5e0f8e39d9c8e3f0a \
|
|
94
|
-
--hash=sha256:c8af8a6a39e0050d3f3193cda56c42b43534a9b3995c44241bb9527e3c3fd451 \
|
|
95
|
-
--hash=sha256:cc754117a7d60ba8e55b3c39abd67f37fbc05dd63cdcb03d1717a382fe0a3421 \
|
|
96
|
-
--hash=sha256:d8d1d269874c94b1ed2b6667e5e43dcf4541838019b1caa4c48f848ac73634df \
|
|
97
|
-
--hash=sha256:da4406d95c340e0b1cc43a3858fac729f52689325bcf61a9182eb94aff7451dc \
|
|
98
|
-
--hash=sha256:df3819a5d48ab3aae1548e62093d0111ad7c3b62ff9392421b7bbf149c08b629 \
|
|
99
|
-
--hash=sha256:efca7281184b54f7abab6980cf25837b709f72ced62791f62dabcd7b184d958a \
|
|
100
|
-
--hash=sha256:f91acaff475d0ef0d3436b805c9b91fc627a6a8a281771a24f7ab7f458a0b34f \
|
|
101
|
-
--hash=sha256:f9d81fb396ea81fcba3b3dde4a4b51adcb74ff31632014fbfd030f8acd5a7292
|
|
102
|
-
# via dycw-utilities
|
|
103
|
-
h11==0.14.0 \
|
|
104
|
-
--hash=sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d \
|
|
105
|
-
--hash=sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761
|
|
106
|
-
# via httpcore
|
|
107
|
-
hatch==1.9.3 \
|
|
108
|
-
--hash=sha256:672017e349c548f8a957a5fee9aa2f8cfc2c8a994307378e45a8427972bdf8d9 \
|
|
109
|
-
--hash=sha256:8e01ab480039912ee1e97670f834e0cbcb52c0c2d28858d4eb7100f3d7ff447f
|
|
110
|
-
# via dycw-utilities
|
|
111
|
-
hatchling==1.21.1 \
|
|
112
|
-
--hash=sha256:21e8c13f8458b219a91cb84e5b61c15bf786695d1c4fabc29e91e78f94bfe892 \
|
|
113
|
-
--hash=sha256:bba440453a224e7d4478457fa2e8d8c3633765bafa02975a6b53b9bf917980bc
|
|
114
|
-
# via hatch
|
|
115
|
-
httpcore==1.0.3 \
|
|
116
|
-
--hash=sha256:5c0f9546ad17dac4d0772b0808856eb616eb8b48ce94f49ed819fd6982a8a544 \
|
|
117
|
-
--hash=sha256:9a6a501c3099307d9fd76ac244e08503427679b1e81ceb1d922485e2f2462ad2
|
|
118
|
-
# via httpx
|
|
119
|
-
httpx==0.26.0 \
|
|
120
|
-
--hash=sha256:451b55c30d5185ea6b23c2c793abf9bb237d2a7dfb901ced6ff69ad37ec1dfaf \
|
|
121
|
-
--hash=sha256:8915f5a3627c4d47b73e8202457cb28f1266982d1159bd5779d86a80c0eab1cd
|
|
122
|
-
# via hatch
|
|
123
|
-
hyperlink==21.0.0 \
|
|
124
|
-
--hash=sha256:427af957daa58bc909471c6c40f74c5450fa123dd093fc53efd2e91d2705a56b \
|
|
125
|
-
--hash=sha256:e6b14c37ecb73e89c77d78cdb4c2cc8f3fb59a885c5b3f819ff4ed80f25af1b4
|
|
126
|
-
# via hatch
|
|
127
|
-
identify==2.5.34 \
|
|
128
|
-
--hash=sha256:a4316013779e433d08b96e5eabb7f641e6c7942e4ab5d4c509ebd2e7a8994aed \
|
|
129
|
-
--hash=sha256:ee17bc9d499899bc9eaec1ac7bf2dc9eedd480db9d88b96d123d3b64a9d34f5d
|
|
130
|
-
# via pre-commit
|
|
131
|
-
idna==3.6 \
|
|
132
|
-
--hash=sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca \
|
|
133
|
-
--hash=sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f
|
|
134
|
-
# via
|
|
135
|
-
# anyio
|
|
136
|
-
# httpx
|
|
137
|
-
# hyperlink
|
|
138
|
-
importlib-metadata==7.0.1 \
|
|
139
|
-
--hash=sha256:4805911c3a4ec7c3966410053e9ec6a1fecd629117df5adee56dfc9432a1081e \
|
|
140
|
-
--hash=sha256:f238736bb06590ae52ac1fab06a3a9ef1d8dce2b7a35b5ab329371d6c8f5d2cc
|
|
141
|
-
# via keyring
|
|
142
|
-
iniconfig==2.0.0 \
|
|
143
|
-
--hash=sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3 \
|
|
144
|
-
--hash=sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374
|
|
145
|
-
# via pytest
|
|
146
|
-
jaraco-classes==3.3.1 \
|
|
147
|
-
--hash=sha256:86b534de565381f6b3c1c830d13f931d7be1a75f0081c57dff615578676e2206 \
|
|
148
|
-
--hash=sha256:cb28a5ebda8bc47d8c8015307d93163464f9f2b91ab4006e09ff0ce07e8bfb30
|
|
149
|
-
# via keyring
|
|
150
|
-
keyring==24.3.0 \
|
|
151
|
-
--hash=sha256:4446d35d636e6a10b8bce7caa66913dd9eca5fd222ca03a3d42c38608ac30836 \
|
|
152
|
-
--hash=sha256:e730ecffd309658a08ee82535a3b5ec4b4c8669a9be11efb66249d8e0aeb9a25
|
|
153
|
-
# via hatch
|
|
154
|
-
loguru==0.7.2 \
|
|
155
|
-
--hash=sha256:003d71e3d3ed35f0f8984898359d65b79e5b21943f78af86aa5491210429b8eb \
|
|
156
|
-
--hash=sha256:e671a53522515f34fd406340ee968cb9ecafbc4b36c679da03c18fd8d0bd51ac
|
|
157
|
-
# via dycw-utilities
|
|
158
|
-
markdown-it-py==3.0.0 \
|
|
159
|
-
--hash=sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1 \
|
|
160
|
-
--hash=sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb
|
|
161
|
-
# via rich
|
|
162
|
-
mdurl==0.1.2 \
|
|
163
|
-
--hash=sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8 \
|
|
164
|
-
--hash=sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba
|
|
165
|
-
# via markdown-it-py
|
|
166
|
-
more-itertools==10.2.0 \
|
|
167
|
-
--hash=sha256:686b06abe565edfab151cb8fd385a05651e1fdf8f0a14191e4439283421f8684 \
|
|
168
|
-
--hash=sha256:8fccb480c43d3e99a00087634c06dd02b0d50fbf088b380de5a41a015ec239e1
|
|
169
|
-
# via
|
|
170
|
-
# dycw-utilities
|
|
171
|
-
# jaraco-classes
|
|
172
|
-
nodeenv==1.8.0 \
|
|
173
|
-
--hash=sha256:d51e0c37e64fbf47d017feac3145cdbb58836d7eee8c6f6d3b6880c5456227d2 \
|
|
174
|
-
--hash=sha256:df865724bb3c3adc86b3876fa209771517b0cfe596beff01a92700e0e8be4cec
|
|
175
|
-
# via pre-commit
|
|
176
|
-
packaging==23.2 \
|
|
177
|
-
--hash=sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5 \
|
|
178
|
-
--hash=sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7
|
|
179
|
-
# via
|
|
180
|
-
# hatch
|
|
181
|
-
# hatchling
|
|
182
|
-
# pytest
|
|
183
|
-
pathspec==0.12.1 \
|
|
184
|
-
--hash=sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08 \
|
|
185
|
-
--hash=sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712
|
|
186
|
-
# via hatchling
|
|
187
|
-
pathvalidate==3.2.0 \
|
|
188
|
-
--hash=sha256:5e8378cf6712bff67fbe7a8307d99fa8c1a0cb28aa477056f8fc374f0dff24ad \
|
|
189
|
-
--hash=sha256:cc593caa6299b22b37f228148257997e2fa850eea2daf7e4cc9205cef6908dee
|
|
190
|
-
# via dycw-utilities
|
|
191
|
-
pexpect==4.9.0 \
|
|
192
|
-
--hash=sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523 \
|
|
193
|
-
--hash=sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f
|
|
194
|
-
# via hatch
|
|
195
|
-
platformdirs==4.2.0 \
|
|
196
|
-
--hash=sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068 \
|
|
197
|
-
--hash=sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768
|
|
198
|
-
# via
|
|
199
|
-
# hatch
|
|
200
|
-
# virtualenv
|
|
201
|
-
pluggy==1.4.0 \
|
|
202
|
-
--hash=sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981 \
|
|
203
|
-
--hash=sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be
|
|
204
|
-
# via
|
|
205
|
-
# hatchling
|
|
206
|
-
# pytest
|
|
207
|
-
pre-commit==3.6.1 \
|
|
208
|
-
--hash=sha256:9fe989afcf095d2c4796ce7c553cf28d4d4a9b9346de3cda079bcf40748454a4 \
|
|
209
|
-
--hash=sha256:c90961d8aa706f75d60935aba09469a6b0bcb8345f127c3fbee4bdc5f114cf4b
|
|
210
|
-
ptyprocess==0.7.0 \
|
|
211
|
-
--hash=sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35 \
|
|
212
|
-
--hash=sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220
|
|
213
|
-
# via pexpect
|
|
214
|
-
pygments==2.17.2 \
|
|
215
|
-
--hash=sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c \
|
|
216
|
-
--hash=sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367
|
|
217
|
-
# via rich
|
|
218
|
-
pyhumps==3.8.0 \
|
|
219
|
-
--hash=sha256:060e1954d9069f428232a1adda165db0b9d8dfdce1d265d36df7fbff540acfd6 \
|
|
220
|
-
--hash=sha256:498026258f7ee1a8e447c2e28526c0bea9407f9a59c03260aee4bd6c04d681a3
|
|
221
|
-
# via dycw-utilities
|
|
222
|
-
pytest==8.0.0 \
|
|
223
|
-
--hash=sha256:249b1b0864530ba251b7438274c4d251c58d868edaaec8762893ad4a0d71c36c \
|
|
224
|
-
--hash=sha256:50fb9cbe836c3f20f0dfa99c565201fb75dc54c8d76373cd1bde06b06657bdb6
|
|
225
|
-
# via
|
|
226
|
-
# dycw-utilities
|
|
227
|
-
# pytest-instafail
|
|
228
|
-
# pytest-only
|
|
229
|
-
# pytest-randomly
|
|
230
|
-
# pytest-xdist
|
|
231
|
-
pytest-instafail==0.5.0 \
|
|
232
|
-
--hash=sha256:33a606f7e0c8e646dc3bfee0d5e3a4b7b78ef7c36168cfa1f3d93af7ca706c9e \
|
|
233
|
-
--hash=sha256:6855414487e9e4bb76a118ce952c3c27d3866af15487506c4ded92eb72387819
|
|
234
|
-
# via dycw-utilities
|
|
235
|
-
pytest-only==2.0.0 \
|
|
236
|
-
--hash=sha256:0467eefac714a920b2df2e3c1d2fbf61cf2cd65583ccd2e3233f107862a5fc77 \
|
|
237
|
-
--hash=sha256:1f344d15d6495ca108b341ca12ca90eb1695bebb3bd3978c8efd4a0e121bdb8f
|
|
238
|
-
# via dycw-utilities
|
|
239
|
-
pytest-randomly==3.15.0 \
|
|
240
|
-
--hash=sha256:0516f4344b29f4e9cdae8bce31c4aeebf59d0b9ef05927c33354ff3859eeeca6 \
|
|
241
|
-
--hash=sha256:b908529648667ba5e54723088edd6f82252f540cc340d748d1fa985539687047
|
|
242
|
-
# via dycw-utilities
|
|
243
|
-
pytest-xdist==3.5.0 \
|
|
244
|
-
--hash=sha256:cbb36f3d67e0c478baa57fa4edc8843887e0f6cfc42d677530a36d7472b32d8a \
|
|
245
|
-
--hash=sha256:d075629c7e00b611df89f490a5063944bee7a4362a5ff11c7cc7824a03dfce24
|
|
246
|
-
# via dycw-utilities
|
|
247
|
-
pyyaml==6.0.1 \
|
|
248
|
-
--hash=sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5 \
|
|
249
|
-
--hash=sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc \
|
|
250
|
-
--hash=sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df \
|
|
251
|
-
--hash=sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741 \
|
|
252
|
-
--hash=sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206 \
|
|
253
|
-
--hash=sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27 \
|
|
254
|
-
--hash=sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595 \
|
|
255
|
-
--hash=sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62 \
|
|
256
|
-
--hash=sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98 \
|
|
257
|
-
--hash=sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696 \
|
|
258
|
-
--hash=sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290 \
|
|
259
|
-
--hash=sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9 \
|
|
260
|
-
--hash=sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d \
|
|
261
|
-
--hash=sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6 \
|
|
262
|
-
--hash=sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867 \
|
|
263
|
-
--hash=sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47 \
|
|
264
|
-
--hash=sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486 \
|
|
265
|
-
--hash=sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6 \
|
|
266
|
-
--hash=sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3 \
|
|
267
|
-
--hash=sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007 \
|
|
268
|
-
--hash=sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938 \
|
|
269
|
-
--hash=sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0 \
|
|
270
|
-
--hash=sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c \
|
|
271
|
-
--hash=sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735 \
|
|
272
|
-
--hash=sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d \
|
|
273
|
-
--hash=sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28 \
|
|
274
|
-
--hash=sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4 \
|
|
275
|
-
--hash=sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba \
|
|
276
|
-
--hash=sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8 \
|
|
277
|
-
--hash=sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef \
|
|
278
|
-
--hash=sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5 \
|
|
279
|
-
--hash=sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd \
|
|
280
|
-
--hash=sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3 \
|
|
281
|
-
--hash=sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0 \
|
|
282
|
-
--hash=sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515 \
|
|
283
|
-
--hash=sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c \
|
|
284
|
-
--hash=sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c \
|
|
285
|
-
--hash=sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924 \
|
|
286
|
-
--hash=sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34 \
|
|
287
|
-
--hash=sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43 \
|
|
288
|
-
--hash=sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859 \
|
|
289
|
-
--hash=sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673 \
|
|
290
|
-
--hash=sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54 \
|
|
291
|
-
--hash=sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a \
|
|
292
|
-
--hash=sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b \
|
|
293
|
-
--hash=sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab \
|
|
294
|
-
--hash=sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa \
|
|
295
|
-
--hash=sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c \
|
|
296
|
-
--hash=sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585 \
|
|
297
|
-
--hash=sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d \
|
|
298
|
-
--hash=sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f
|
|
299
|
-
# via pre-commit
|
|
300
|
-
rich==13.7.0 \
|
|
301
|
-
--hash=sha256:5cb5123b5cf9ee70584244246816e9114227e0b98ad9176eede6ad54bf5403fa \
|
|
302
|
-
--hash=sha256:6da14c108c4866ee9520bbffa71f6fe3962e193b7da68720583850cd4548e235
|
|
303
|
-
# via hatch
|
|
304
|
-
semver==3.0.2 \
|
|
305
|
-
--hash=sha256:6253adb39c70f6e51afed2fa7152bcd414c411286088fb4b9effb133885ab4cc \
|
|
306
|
-
--hash=sha256:b1ea4686fe70b981f85359eda33199d60c53964284e0cfb4977d243e37cf4bf4
|
|
307
|
-
# via dycw-utilities
|
|
308
|
-
setuptools==69.1.0 \
|
|
309
|
-
--hash=sha256:850894c4195f09c4ed30dba56213bf7c3f21d86ed6bdaafb5df5972593bfc401 \
|
|
310
|
-
--hash=sha256:c054629b81b946d63a9c6e732bc8b2513a7c3ea645f11d0139a2191d735c60c6
|
|
311
|
-
# via nodeenv
|
|
312
|
-
shellingham==1.5.4 \
|
|
313
|
-
--hash=sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686 \
|
|
314
|
-
--hash=sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de
|
|
315
|
-
# via hatch
|
|
316
|
-
sniffio==1.3.0 \
|
|
317
|
-
--hash=sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101 \
|
|
318
|
-
--hash=sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384
|
|
319
|
-
# via
|
|
320
|
-
# anyio
|
|
321
|
-
# httpx
|
|
322
|
-
tomli==2.0.1 \
|
|
323
|
-
--hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \
|
|
324
|
-
--hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f
|
|
325
|
-
# via
|
|
326
|
-
# hatchling
|
|
327
|
-
# pytest
|
|
328
|
-
# typed-settings
|
|
329
|
-
tomli-w==1.0.0 \
|
|
330
|
-
--hash=sha256:9f2a07e8be30a0729e533ec968016807069991ae2fd921a78d42f429ae5f4463 \
|
|
331
|
-
--hash=sha256:f463434305e0336248cac9c2dc8076b707d8a12d019dd349f5c1e382dd1ae1b9
|
|
332
|
-
# via hatch
|
|
333
|
-
tomlkit==0.12.3 \
|
|
334
|
-
--hash=sha256:75baf5012d06501f07bee5bf8e801b9f343e7aac5a92581f20f80ce632e6b5a4 \
|
|
335
|
-
--hash=sha256:b0a645a9156dc7cb5d3a1f0d4bab66db287fcb8e0430bdd4664a095ea16414ba
|
|
336
|
-
# via hatch
|
|
337
|
-
tqdm==4.66.2 \
|
|
338
|
-
--hash=sha256:1ee4f8a893eb9bef51c6e35730cebf234d5d0b6bd112b0271e10ed7c24a02bd9 \
|
|
339
|
-
--hash=sha256:6cd52cdf0fef0e0f543299cfc96fec90d7b8a7e88745f411ec33eb44d5ed3531
|
|
340
|
-
# via dycw-utilities
|
|
341
|
-
trove-classifiers==2024.1.31 \
|
|
342
|
-
--hash=sha256:854aba3358f3cf10e5c0916aa533f5a39e27aadd8ade26a54cdc2a93257e39c4 \
|
|
343
|
-
--hash=sha256:bfdfe60bbf64985c524416afb637ecc79c558e0beb4b7f52b0039e01044b0229
|
|
344
|
-
# via hatchling
|
|
345
|
-
typed-settings==24.0.1 \
|
|
346
|
-
--hash=sha256:a7aa4cec158e78b0c2467254f1dde0a066fc7bc7a8e3da0a52a2760cd871b5ef \
|
|
347
|
-
--hash=sha256:dcb4433cae2fc6dfce4f959ea05d871393d9986d099ff91f431ef6050f12f540
|
|
348
|
-
# via dycw-utilities
|
|
349
|
-
typing-extensions==4.9.0 \
|
|
350
|
-
--hash=sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783 \
|
|
351
|
-
--hash=sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd
|
|
352
|
-
# via
|
|
353
|
-
# anyio
|
|
354
|
-
# dycw-utilities
|
|
355
|
-
userpath==1.9.1 \
|
|
356
|
-
--hash=sha256:ce8176728d98c914b6401781bf3b23fccd968d1647539c8788c7010375e02796 \
|
|
357
|
-
--hash=sha256:e085053e5161f82558793c41d60375289efceb4b77d96033ea9c84fc0893f772
|
|
358
|
-
# via hatch
|
|
359
|
-
virtualenv==20.25.0 \
|
|
360
|
-
--hash=sha256:4238949c5ffe6876362d9c0180fc6c3a824a7b12b80604eeb8085f2ed7460de3 \
|
|
361
|
-
--hash=sha256:bf51c0d9c7dd63ea8e44086fa1e4fb1093a31e963b86959257378aef020e1f1b
|
|
362
|
-
# via
|
|
363
|
-
# hatch
|
|
364
|
-
# pre-commit
|
|
365
|
-
xdg-base-dirs==6.0.1 \
|
|
366
|
-
--hash=sha256:63f6ebc1721ced2e86c340856e004ef829501a30a37e17079c52cfaf0e1741b9 \
|
|
367
|
-
--hash=sha256:b4c8f4ba72d1286018b25eea374ec6fbf4fddda3d4137edf50de95de53e195a6
|
|
368
|
-
zipp==3.17.0 \
|
|
369
|
-
--hash=sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31 \
|
|
370
|
-
--hash=sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0
|
|
371
|
-
# via importlib-metadata
|
|
372
|
-
zstandard==0.22.0 \
|
|
373
|
-
--hash=sha256:11f0d1aab9516a497137b41e3d3ed4bbf7b2ee2abc79e5c8b010ad286d7464bd \
|
|
374
|
-
--hash=sha256:1958100b8a1cc3f27fa21071a55cb2ed32e9e5df4c3c6e661c193437f171cba2 \
|
|
375
|
-
--hash=sha256:1a90ba9a4c9c884bb876a14be2b1d216609385efb180393df40e5172e7ecf356 \
|
|
376
|
-
--hash=sha256:1d43501f5f31e22baf822720d82b5547f8a08f5386a883b32584a185675c8fbf \
|
|
377
|
-
--hash=sha256:23d2b3c2b8e7e5a6cb7922f7c27d73a9a615f0a5ab5d0e03dd533c477de23004 \
|
|
378
|
-
--hash=sha256:2612e9bb4977381184bb2463150336d0f7e014d6bb5d4a370f9a372d21916f69 \
|
|
379
|
-
--hash=sha256:275df437ab03f8c033b8a2c181e51716c32d831082d93ce48002a5227ec93019 \
|
|
380
|
-
--hash=sha256:2ac9957bc6d2403c4772c890916bf181b2653640da98f32e04b96e4d6fb3252a \
|
|
381
|
-
--hash=sha256:2b11ea433db22e720758cba584c9d661077121fcf60ab43351950ded20283440 \
|
|
382
|
-
--hash=sha256:2fdd53b806786bd6112d97c1f1e7841e5e4daa06810ab4b284026a1a0e484c0b \
|
|
383
|
-
--hash=sha256:33591d59f4956c9812f8063eff2e2c0065bc02050837f152574069f5f9f17775 \
|
|
384
|
-
--hash=sha256:36a47636c3de227cd765e25a21dc5dace00539b82ddd99ee36abae38178eff9e \
|
|
385
|
-
--hash=sha256:39b2853efc9403927f9065cc48c9980649462acbdf81cd4f0cb773af2fd734bc \
|
|
386
|
-
--hash=sha256:3db41c5e49ef73641d5111554e1d1d3af106410a6c1fb52cf68912ba7a343a0d \
|
|
387
|
-
--hash=sha256:445b47bc32de69d990ad0f34da0e20f535914623d1e506e74d6bc5c9dc40bb09 \
|
|
388
|
-
--hash=sha256:466e6ad8caefb589ed281c076deb6f0cd330e8bc13c5035854ffb9c2014b118c \
|
|
389
|
-
--hash=sha256:48f260e4c7294ef275744210a4010f116048e0c95857befb7462e033f09442fe \
|
|
390
|
-
--hash=sha256:4ac59d5d6910b220141c1737b79d4a5aa9e57466e7469a012ed42ce2d3995e88 \
|
|
391
|
-
--hash=sha256:53866a9d8ab363271c9e80c7c2e9441814961d47f88c9bc3b248142c32141d94 \
|
|
392
|
-
--hash=sha256:589402548251056878d2e7c8859286eb91bd841af117dbe4ab000e6450987e08 \
|
|
393
|
-
--hash=sha256:68953dc84b244b053c0d5f137a21ae8287ecf51b20872eccf8eaac0302d3e3b0 \
|
|
394
|
-
--hash=sha256:6c25b8eb733d4e741246151d895dd0308137532737f337411160ff69ca24f93a \
|
|
395
|
-
--hash=sha256:7034d381789f45576ec3f1fa0e15d741828146439228dc3f7c59856c5bcd3292 \
|
|
396
|
-
--hash=sha256:73a1d6bd01961e9fd447162e137ed949c01bdb830dfca487c4a14e9742dccc93 \
|
|
397
|
-
--hash=sha256:8226a33c542bcb54cd6bd0a366067b610b41713b64c9abec1bc4533d69f51e70 \
|
|
398
|
-
--hash=sha256:888196c9c8893a1e8ff5e89b8f894e7f4f0e64a5af4d8f3c410f0319128bb2f8 \
|
|
399
|
-
--hash=sha256:88c5b4b47a8a138338a07fc94e2ba3b1535f69247670abfe422de4e0b344aae2 \
|
|
400
|
-
--hash=sha256:8a1b2effa96a5f019e72874969394edd393e2fbd6414a8208fea363a22803b45 \
|
|
401
|
-
--hash=sha256:93e1856c8313bc688d5df069e106a4bc962eef3d13372020cc6e3ebf5e045202 \
|
|
402
|
-
--hash=sha256:9501f36fac6b875c124243a379267d879262480bf85b1dbda61f5ad4d01b75a3 \
|
|
403
|
-
--hash=sha256:959665072bd60f45c5b6b5d711f15bdefc9849dd5da9fb6c873e35f5d34d8cfb \
|
|
404
|
-
--hash=sha256:a1d67d0d53d2a138f9e29d8acdabe11310c185e36f0a848efa104d4e40b808e4 \
|
|
405
|
-
--hash=sha256:a493d470183ee620a3df1e6e55b3e4de8143c0ba1b16f3ded83208ea8ddfd91d \
|
|
406
|
-
--hash=sha256:a7ccf5825fd71d4542c8ab28d4d482aace885f5ebe4b40faaa290eed8e095a4c \
|
|
407
|
-
--hash=sha256:a88b7df61a292603e7cd662d92565d915796b094ffb3d206579aaebac6b85d5f \
|
|
408
|
-
--hash=sha256:a97079b955b00b732c6f280d5023e0eefe359045e8b83b08cf0333af9ec78f26 \
|
|
409
|
-
--hash=sha256:d22fdef58976457c65e2796e6730a3ea4a254f3ba83777ecfc8592ff8d77d303 \
|
|
410
|
-
--hash=sha256:d75f693bb4e92c335e0645e8845e553cd09dc91616412d1d4650da835b5449df \
|
|
411
|
-
--hash=sha256:d8593f8464fb64d58e8cb0b905b272d40184eac9a18d83cf8c10749c3eafcd7e \
|
|
412
|
-
--hash=sha256:d8fff0f0c1d8bc5d866762ae95bd99d53282337af1be9dc0d88506b340e74b73 \
|
|
413
|
-
--hash=sha256:de20a212ef3d00d609d0b22eb7cc798d5a69035e81839f549b538eff4105d01c \
|
|
414
|
-
--hash=sha256:e9e9d4e2e336c529d4c435baad846a181e39a982f823f7e4495ec0b0ec8538d2 \
|
|
415
|
-
--hash=sha256:f058a77ef0ece4e210bb0450e68408d4223f728b109764676e1a13537d056bb0 \
|
|
416
|
-
--hash=sha256:f1a4b358947a65b94e2501ce3e078bbc929b039ede4679ddb0460829b12f7375 \
|
|
417
|
-
--hash=sha256:f9b2cde1cd1b2a10246dbc143ba49d942d14fb3d2b4bccf4618d475c65464912 \
|
|
418
|
-
--hash=sha256:fe3390c538f12437b859d815040763abc728955a52ca6ff9c5d4ac707c4ad98e
|
|
419
|
-
# 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
|
{dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/run_dockfmt/__init__.py
RENAMED
|
File without changes
|
{dycw_pre_commit_hooks-0.9.4 → dycw_pre_commit_hooks-0.9.6}/pre_commit_hooks/run_dockfmt/__main__.py
RENAMED
|
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
|