pyproject-pre-commit 0.3.3__tar.gz → 0.3.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.
- pyproject_pre_commit-0.3.6/.mise.toml +2 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/.pre-commit-config.yaml +6 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/.pre-commit-hooks.yaml +27 -12
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/PKG-INFO +7 -1
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/pyproject.toml +8 -3
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/src/pyproject_pre_commit/pyproject_pre_commit.py +14 -2
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/uv.lock +207 -156
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/.github/FUNDING.yml +0 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/.github/workflows/pypi.yml +0 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/.github/workflows/test.yml +0 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/.gitignore +0 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/LICENSE +0 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/README.md +0 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/renovate.json +0 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/src/pyproject_pre_commit/__init__.py +0 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/src/pyproject_pre_commit/__version__.py +0 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/src/pyproject_pre_commit/py.typed +0 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/tests/__init__.py +0 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/tests/test_pyproject_pre_commit.py +0 -0
- {pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/tests/test_version.py +0 -0
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
repos:
|
2
3
|
- repo: local
|
3
4
|
hooks:
|
@@ -195,6 +196,11 @@ repos:
|
|
195
196
|
entry: mdformat
|
196
197
|
language: system
|
197
198
|
types: [markdown]
|
199
|
+
- id: validate-pyproject
|
200
|
+
name: validate-pyproject
|
201
|
+
entry: validate-pyproject
|
202
|
+
language: system
|
203
|
+
files: ^pyproject.toml$
|
198
204
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
199
205
|
rev: v5.0.0
|
200
206
|
hooks:
|
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
- id: ruff-lint-diff
|
2
3
|
# https://github.com/astral-sh/ruff-pre-commit
|
3
4
|
name: ruff-lint-diff
|
@@ -9,9 +10,9 @@
|
|
9
10
|
- pyi
|
10
11
|
- cython
|
11
12
|
- jupyter
|
12
|
-
require_serial: true
|
13
13
|
minimum_pre_commit_version: "2.9.2"
|
14
14
|
verbose: true
|
15
|
+
require_serial: true
|
15
16
|
- id: ruff-lint
|
16
17
|
# https://github.com/astral-sh/ruff-pre-commit
|
17
18
|
name: ruff-lint
|
@@ -23,8 +24,8 @@
|
|
23
24
|
- pyi
|
24
25
|
- cython
|
25
26
|
- jupyter
|
26
|
-
require_serial: true
|
27
27
|
minimum_pre_commit_version: "2.9.2"
|
28
|
+
require_serial: true
|
28
29
|
- id: ruff-format-diff
|
29
30
|
# https://github.com/astral-sh/ruff-pre-commit
|
30
31
|
name: ruff-format-diff
|
@@ -36,9 +37,9 @@
|
|
36
37
|
- pyi
|
37
38
|
- cython
|
38
39
|
- jupyter
|
39
|
-
require_serial: true
|
40
40
|
minimum_pre_commit_version: "2.9.2"
|
41
41
|
verbose: true
|
42
|
+
require_serial: true
|
42
43
|
- id: ruff-format
|
43
44
|
# https://github.com/astral-sh/ruff-pre-commit
|
44
45
|
name: ruff-format
|
@@ -50,8 +51,8 @@
|
|
50
51
|
- pyi
|
51
52
|
- cython
|
52
53
|
- jupyter
|
53
|
-
require_serial: true
|
54
54
|
minimum_pre_commit_version: "2.9.2"
|
55
|
+
require_serial: true
|
55
56
|
- id: black-diff
|
56
57
|
# https://github.com/psf/black
|
57
58
|
name: black-diff
|
@@ -63,12 +64,12 @@
|
|
63
64
|
- pyi
|
64
65
|
- cython
|
65
66
|
- jupyter
|
66
|
-
require_serial: true
|
67
67
|
args:
|
68
68
|
- "--diff"
|
69
69
|
- "--color"
|
70
70
|
- "--quiet"
|
71
71
|
verbose: true
|
72
|
+
require_serial: true
|
72
73
|
- id: black
|
73
74
|
# https://github.com/psf/black
|
74
75
|
name: black
|
@@ -80,9 +81,9 @@
|
|
80
81
|
- pyi
|
81
82
|
- cython
|
82
83
|
- jupyter
|
83
|
-
require_serial: true
|
84
84
|
args:
|
85
85
|
- "--quiet"
|
86
|
+
require_serial: true
|
86
87
|
- id: blacken-docs
|
87
88
|
# https://github.com/asottile/blacken-docs
|
88
89
|
name: blacken-docs
|
@@ -90,6 +91,7 @@
|
|
90
91
|
entry: blacken-docs
|
91
92
|
language: system
|
92
93
|
files: '\.(rst|md|markdown|py|tex)$'
|
94
|
+
require_serial: true
|
93
95
|
- id: autoflake-diff
|
94
96
|
# https://github.com/PyCQA/autoflake
|
95
97
|
name: autoflake-diff
|
@@ -101,8 +103,8 @@
|
|
101
103
|
- pyi
|
102
104
|
- cython
|
103
105
|
- jupyter
|
104
|
-
require_serial: true
|
105
106
|
verbose: true
|
107
|
+
require_serial: true
|
106
108
|
- id: autoflake
|
107
109
|
# https://github.com/PyCQA/autoflake
|
108
110
|
name: autoflake
|
@@ -114,9 +116,9 @@
|
|
114
116
|
- pyi
|
115
117
|
- cython
|
116
118
|
- jupyter
|
117
|
-
require_serial: true
|
118
119
|
args:
|
119
120
|
- "--in-place"
|
121
|
+
require_serial: true
|
120
122
|
- id: autopep8-diff
|
121
123
|
# https://github.com/pre-commit/mirrors-autopep8
|
122
124
|
name: autopep8-diff
|
@@ -130,6 +132,7 @@
|
|
130
132
|
- jupyter
|
131
133
|
args:
|
132
134
|
- "--diff"
|
135
|
+
require_serial: true
|
133
136
|
- id: autopep8
|
134
137
|
# https://github.com/pre-commit/mirrors-autopep8
|
135
138
|
name: autopep8
|
@@ -143,13 +146,13 @@
|
|
143
146
|
- jupyter
|
144
147
|
args:
|
145
148
|
- "--in-place"
|
149
|
+
require_serial: true
|
146
150
|
- id: isort-diff
|
147
151
|
# https://github.com/PyCQA/isort
|
148
152
|
name: isort-diff
|
149
153
|
description: Just show the diff of isort result.
|
150
154
|
entry: isort
|
151
155
|
language: system
|
152
|
-
require_serial: true
|
153
156
|
types_or:
|
154
157
|
- python
|
155
158
|
- pyi
|
@@ -159,13 +162,13 @@
|
|
159
162
|
- '--diff'
|
160
163
|
- '--filter-files'
|
161
164
|
verbose: true
|
165
|
+
require_serial: true
|
162
166
|
- id: isort
|
163
167
|
# https://github.com/PyCQA/isort
|
164
168
|
name: isort
|
165
169
|
description: isort your imports, so you don't have to.
|
166
170
|
entry: isort
|
167
171
|
language: system
|
168
|
-
require_serial: true
|
169
172
|
types_or:
|
170
173
|
- python
|
171
174
|
- pyi
|
@@ -173,6 +176,7 @@
|
|
173
176
|
- jupyter
|
174
177
|
args:
|
175
178
|
- '--filter-files'
|
179
|
+
require_serial: true
|
176
180
|
- id: flake8
|
177
181
|
# https://github.com/PyCQA/flake8
|
178
182
|
name: flake8
|
@@ -199,6 +203,7 @@
|
|
199
203
|
args:
|
200
204
|
- "-c"
|
201
205
|
- "pyproject.toml"
|
206
|
+
require_serial: true
|
202
207
|
- id: mypy
|
203
208
|
# https://github.com/pre-commit/mirrors-mypy
|
204
209
|
name: mypy
|
@@ -210,20 +215,20 @@
|
|
210
215
|
- pyi
|
211
216
|
- cython
|
212
217
|
- jupyter
|
213
|
-
require_serial: true
|
214
218
|
pass_filenames: false
|
219
|
+
require_serial: true
|
215
220
|
- id: numpydoc-validation
|
216
221
|
# https://github.com/numpy/numpydoc
|
217
222
|
name: numpydoc-validation
|
218
223
|
entry: numpydoc lint
|
219
224
|
description: This hook validates that docstrings in committed files adhere to numpydoc standards.
|
220
|
-
require_serial: true
|
221
225
|
language: system
|
222
226
|
types:
|
223
227
|
- python
|
224
228
|
- pyi
|
225
229
|
- cython
|
226
230
|
- jupyter
|
231
|
+
require_serial: true
|
227
232
|
- id: shellcheck
|
228
233
|
# https://github.com/shellcheck-py/shellcheck-py
|
229
234
|
name: shellcheck
|
@@ -241,6 +246,7 @@
|
|
241
246
|
types: [markdown]
|
242
247
|
args:
|
243
248
|
- "--check"
|
249
|
+
require_serial: true
|
244
250
|
- id: mdformat
|
245
251
|
# https://github.com/executablebooks/mdformat
|
246
252
|
name: mdformat
|
@@ -248,3 +254,12 @@
|
|
248
254
|
entry: mdformat
|
249
255
|
language: system
|
250
256
|
types: [markdown]
|
257
|
+
require_serial: true
|
258
|
+
- id: validate-pyproject
|
259
|
+
# https://github.com/abravalheri/validate-pyproject
|
260
|
+
name: validate-pyproject
|
261
|
+
description: Validate pyproject.toml file
|
262
|
+
entry: validate-pyproject
|
263
|
+
language: system
|
264
|
+
files: ^pyproject.toml$
|
265
|
+
require_serial: true
|
@@ -1,8 +1,13 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: pyproject-pre-commit
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.6
|
4
4
|
Summary: pre-commit hooks for python projects using pyproject.toml.
|
5
|
+
Project-URL: Repository, https://github.com/rcmdnk/pyproject-pre-commit
|
6
|
+
Project-URL: Documentation, https://github.com/rcmdnk/pyproject-pre-commit
|
7
|
+
Project-URL: Homepage, https://github.com/rcmdnk/pyproject-pre-commit
|
8
|
+
Project-URL: Issue, https://github.com/rcmdnk/pyproject-pre-commit/issues
|
5
9
|
Author-email: rcmdnk <rcmdnk@gmail.com>
|
10
|
+
License: Apache-2.0
|
6
11
|
Keywords: pre-commit,pyproject.toml,uv
|
7
12
|
Classifier: Development Status :: 3 - Alpha
|
8
13
|
Classifier: Environment :: Console
|
@@ -46,6 +51,7 @@ Requires-Dist: pep8-naming>=0.14.0
|
|
46
51
|
Requires-Dist: pre-commit>=4.0.0
|
47
52
|
Requires-Dist: pycodestyle>=2.11.0
|
48
53
|
Requires-Dist: shellcheck-py>=0.9.0.5
|
54
|
+
Requires-Dist: validate-pyproject[all]>=0.22
|
49
55
|
Provides-Extra: ruff
|
50
56
|
Requires-Dist: mdformat-ruff>=0.1.3; extra == 'ruff'
|
51
57
|
Requires-Dist: ruff>=0.7.2; extra == 'ruff'
|
@@ -1,12 +1,10 @@
|
|
1
1
|
[project]
|
2
2
|
name = "pyproject-pre-commit"
|
3
|
-
version = "0.3.
|
3
|
+
version = "0.3.6"
|
4
4
|
description = "pre-commit hooks for python projects using pyproject.toml."
|
5
5
|
authors = [
|
6
6
|
{ name = "rcmdnk", email = "rcmdnk@gmail.com" }
|
7
7
|
]
|
8
|
-
repository = "https://github.com/rcmdnk/pyproject-pre-commit"
|
9
|
-
homepage = "https://github.com/rcmdnk/pyproject-pre-commit"
|
10
8
|
readme = "README.md"
|
11
9
|
license = "Apache-2.0"
|
12
10
|
keywords = ["pre-commit", "pyproject.toml", "uv"]
|
@@ -55,8 +53,15 @@ dependencies = [
|
|
55
53
|
"mdformat-tables>=1.0.0",
|
56
54
|
"mdformat-web>=0.2.0",
|
57
55
|
"mdformat-toc>=0.3.0",
|
56
|
+
"validate-pyproject[all]>=0.22",
|
58
57
|
]
|
59
58
|
|
59
|
+
[project.urls]
|
60
|
+
Repository = "https://github.com/rcmdnk/pyproject-pre-commit"
|
61
|
+
Documentation = "https://github.com/rcmdnk/pyproject-pre-commit"
|
62
|
+
Homepage = "https://github.com/rcmdnk/pyproject-pre-commit"
|
63
|
+
Issue = "https://github.com/rcmdnk/pyproject-pre-commit/issues"
|
64
|
+
|
60
65
|
[project.optional-dependencies]
|
61
66
|
ruff = [
|
62
67
|
"ruff >= 0.7.2",
|
@@ -133,15 +133,27 @@ ignore-missing-imports = true
|
|
133
133
|
scripts_are_modules = true
|
134
134
|
install_types = true
|
135
135
|
non_interactive = true
|
136
|
+
|
137
|
+
[tool.numpydoc_validation]
|
138
|
+
checks = [
|
139
|
+
"all", # report on all checks, except the below
|
140
|
+
"EX01", # "No examples section found"
|
141
|
+
"ES01", # "No extended summary found"
|
142
|
+
"SA01", # "See Also section not found"
|
143
|
+
"GL08", # "The object does not have a docstring"
|
144
|
+
"PR01", # "Parameters {missing_params} not documented"
|
145
|
+
"PR02", # "Unknown parameters {unknown_params}"
|
146
|
+
"RT01", # "No Returns section found"
|
147
|
+
]
|
136
148
|
"""
|
137
149
|
)
|
138
150
|
|
139
151
|
|
140
152
|
def main() -> None:
|
141
153
|
usage = "Usage: ppc <--pre-commit | --pyproject> [--ruff] [--black]"
|
142
|
-
if len(sys.argv)
|
154
|
+
if len(sys.argv) < 2:
|
143
155
|
print(usage) # noqa: T201
|
144
|
-
sys.exit(
|
156
|
+
sys.exit(0)
|
145
157
|
is_ruff = "--ruff" in sys.argv
|
146
158
|
if "--pre-commit" in sys.argv:
|
147
159
|
pre_commit(is_ruff)
|
@@ -56,7 +56,7 @@ wheels = [
|
|
56
56
|
|
57
57
|
[[package]]
|
58
58
|
name = "bandit"
|
59
|
-
version = "1.
|
59
|
+
version = "1.8.0"
|
60
60
|
source = { registry = "https://pypi.org/simple" }
|
61
61
|
dependencies = [
|
62
62
|
{ name = "colorama", marker = "platform_system == 'Windows'" },
|
@@ -64,9 +64,9 @@ dependencies = [
|
|
64
64
|
{ name = "rich" },
|
65
65
|
{ name = "stevedore" },
|
66
66
|
]
|
67
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
67
|
+
sdist = { url = "https://files.pythonhosted.org/packages/57/c3/bea54f22cdc8224f0ace18b2cf86c6adf7010285d0ed51b703af9910c5b2/bandit-1.8.0.tar.gz", hash = "sha256:b5bfe55a095abd9fe20099178a7c6c060f844bfd4fe4c76d28e35e4c52b9d31e", size = 4228600 }
|
68
68
|
wheels = [
|
69
|
-
{ url = "https://files.pythonhosted.org/packages/
|
69
|
+
{ url = "https://files.pythonhosted.org/packages/24/6b/a9f0574d05d63e7d8125cd02a52732adb6720a9b9f13c921386cb9cdb53e/bandit-1.8.0-py3-none-any.whl", hash = "sha256:b1a61d829c0968aed625381e426aa378904b996529d048f8d908fa28f6b13e38", size = 127035 },
|
70
70
|
]
|
71
71
|
|
72
72
|
[package.optional-dependencies]
|
@@ -138,11 +138,11 @@ wheels = [
|
|
138
138
|
|
139
139
|
[[package]]
|
140
140
|
name = "certifi"
|
141
|
-
version = "2024.
|
141
|
+
version = "2024.12.14"
|
142
142
|
source = { registry = "https://pypi.org/simple" }
|
143
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
143
|
+
sdist = { url = "https://files.pythonhosted.org/packages/0f/bd/1d41ee578ce09523c81a15426705dd20969f5abf006d1afe8aeff0dd776a/certifi-2024.12.14.tar.gz", hash = "sha256:b650d30f370c2b724812bee08008be0c4163b163ddaec3f2546c1caf65f191db", size = 166010 }
|
144
144
|
wheels = [
|
145
|
-
{ url = "https://files.pythonhosted.org/packages/
|
145
|
+
{ url = "https://files.pythonhosted.org/packages/a5/32/8f6669fc4798494966bf446c8c4a162e0b5d893dff088afddf76414f70e1/certifi-2024.12.14-py3-none-any.whl", hash = "sha256:1275f7a45be9464efc1173084eaa30f866fe2e47d389406136d332ed4967ec56", size = 164927 },
|
146
146
|
]
|
147
147
|
|
148
148
|
[[package]]
|
@@ -261,71 +261,71 @@ wheels = [
|
|
261
261
|
|
262
262
|
[[package]]
|
263
263
|
name = "coverage"
|
264
|
-
version = "7.6.
|
265
|
-
source = { registry = "https://pypi.org/simple" }
|
266
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
267
|
-
wheels = [
|
268
|
-
{ url = "https://files.pythonhosted.org/packages/
|
269
|
-
{ url = "https://files.pythonhosted.org/packages/
|
270
|
-
{ url = "https://files.pythonhosted.org/packages/
|
271
|
-
{ url = "https://files.pythonhosted.org/packages/
|
272
|
-
{ url = "https://files.pythonhosted.org/packages/
|
273
|
-
{ url = "https://files.pythonhosted.org/packages/
|
274
|
-
{ url = "https://files.pythonhosted.org/packages/
|
275
|
-
{ url = "https://files.pythonhosted.org/packages/
|
276
|
-
{ url = "https://files.pythonhosted.org/packages/
|
277
|
-
{ url = "https://files.pythonhosted.org/packages/
|
278
|
-
{ url = "https://files.pythonhosted.org/packages/
|
279
|
-
{ url = "https://files.pythonhosted.org/packages/
|
280
|
-
{ url = "https://files.pythonhosted.org/packages/
|
281
|
-
{ url = "https://files.pythonhosted.org/packages/
|
282
|
-
{ url = "https://files.pythonhosted.org/packages/
|
283
|
-
{ url = "https://files.pythonhosted.org/packages/
|
284
|
-
{ url = "https://files.pythonhosted.org/packages/
|
285
|
-
{ url = "https://files.pythonhosted.org/packages/
|
286
|
-
{ url = "https://files.pythonhosted.org/packages/
|
287
|
-
{ url = "https://files.pythonhosted.org/packages/
|
288
|
-
{ url = "https://files.pythonhosted.org/packages/
|
289
|
-
{ url = "https://files.pythonhosted.org/packages/
|
290
|
-
{ url = "https://files.pythonhosted.org/packages/
|
291
|
-
{ url = "https://files.pythonhosted.org/packages/8a/
|
292
|
-
{ url = "https://files.pythonhosted.org/packages/
|
293
|
-
{ url = "https://files.pythonhosted.org/packages/
|
294
|
-
{ url = "https://files.pythonhosted.org/packages/
|
295
|
-
{ url = "https://files.pythonhosted.org/packages/
|
296
|
-
{ url = "https://files.pythonhosted.org/packages/
|
297
|
-
{ url = "https://files.pythonhosted.org/packages/
|
298
|
-
{ url = "https://files.pythonhosted.org/packages/
|
299
|
-
{ url = "https://files.pythonhosted.org/packages/
|
300
|
-
{ url = "https://files.pythonhosted.org/packages/
|
301
|
-
{ url = "https://files.pythonhosted.org/packages/
|
302
|
-
{ url = "https://files.pythonhosted.org/packages/
|
303
|
-
{ url = "https://files.pythonhosted.org/packages/
|
304
|
-
{ url = "https://files.pythonhosted.org/packages/
|
305
|
-
{ url = "https://files.pythonhosted.org/packages/
|
306
|
-
{ url = "https://files.pythonhosted.org/packages/
|
307
|
-
{ url = "https://files.pythonhosted.org/packages/
|
308
|
-
{ url = "https://files.pythonhosted.org/packages/
|
309
|
-
{ url = "https://files.pythonhosted.org/packages/
|
310
|
-
{ url = "https://files.pythonhosted.org/packages/
|
311
|
-
{ url = "https://files.pythonhosted.org/packages/
|
312
|
-
{ url = "https://files.pythonhosted.org/packages/
|
313
|
-
{ url = "https://files.pythonhosted.org/packages/
|
314
|
-
{ url = "https://files.pythonhosted.org/packages/
|
315
|
-
{ url = "https://files.pythonhosted.org/packages/
|
316
|
-
{ url = "https://files.pythonhosted.org/packages/
|
317
|
-
{ url = "https://files.pythonhosted.org/packages/
|
318
|
-
{ url = "https://files.pythonhosted.org/packages/
|
319
|
-
{ url = "https://files.pythonhosted.org/packages/
|
320
|
-
{ url = "https://files.pythonhosted.org/packages/
|
321
|
-
{ url = "https://files.pythonhosted.org/packages/
|
322
|
-
{ url = "https://files.pythonhosted.org/packages/
|
323
|
-
{ url = "https://files.pythonhosted.org/packages/
|
324
|
-
{ url = "https://files.pythonhosted.org/packages/
|
325
|
-
{ url = "https://files.pythonhosted.org/packages/
|
326
|
-
{ url = "https://files.pythonhosted.org/packages/
|
327
|
-
{ url = "https://files.pythonhosted.org/packages/
|
328
|
-
{ url = "https://files.pythonhosted.org/packages/
|
264
|
+
version = "7.6.9"
|
265
|
+
source = { registry = "https://pypi.org/simple" }
|
266
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5b/d2/c25011f4d036cf7e8acbbee07a8e09e9018390aee25ba085596c4b83d510/coverage-7.6.9.tar.gz", hash = "sha256:4a8d8977b0c6ef5aeadcb644da9e69ae0dcfe66ec7f368c89c72e058bd71164d", size = 801710 }
|
267
|
+
wheels = [
|
268
|
+
{ url = "https://files.pythonhosted.org/packages/49/f3/f830fb53bf7e4f1d5542756f61d9b740352a188f43854aab9409c8cdeb18/coverage-7.6.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:85d9636f72e8991a1706b2b55b06c27545448baf9f6dbf51c4004609aacd7dcb", size = 207024 },
|
269
|
+
{ url = "https://files.pythonhosted.org/packages/4e/e3/ea5632a3a6efd00ab0a791adc0f3e48512097a757ee7dcbee5505f57bafa/coverage-7.6.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:608a7fd78c67bee8936378299a6cb9f5149bb80238c7a566fc3e6717a4e68710", size = 207463 },
|
270
|
+
{ url = "https://files.pythonhosted.org/packages/e4/ae/18ff8b5580e27e62ebcc888082aa47694c2772782ea7011ddf58e377e98f/coverage-7.6.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96d636c77af18b5cb664ddf12dab9b15a0cfe9c0bde715da38698c8cea748bfa", size = 235902 },
|
271
|
+
{ url = "https://files.pythonhosted.org/packages/6a/52/57030a8d15ab935624d298360f0a6704885578e39f7b4f68569e59f5902d/coverage-7.6.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d75cded8a3cff93da9edc31446872d2997e327921d8eed86641efafd350e1df1", size = 233806 },
|
272
|
+
{ url = "https://files.pythonhosted.org/packages/d0/c5/4466602195ecaced298d55af1e29abceb812addabefd5bd9116a204f7bab/coverage-7.6.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7b15f589593110ae767ce997775d645b47e5cbbf54fd322f8ebea6277466cec", size = 234966 },
|
273
|
+
{ url = "https://files.pythonhosted.org/packages/b0/1c/55552c3009b7bf96732e36548596ade771c87f89cf1f5a8e3975b33539b5/coverage-7.6.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:44349150f6811b44b25574839b39ae35291f6496eb795b7366fef3bd3cf112d3", size = 234029 },
|
274
|
+
{ url = "https://files.pythonhosted.org/packages/bb/7d/da3dca6878701182ea42c51df47a47c80eaef2a76f5aa3e891dc2a8cce3f/coverage-7.6.9-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:d891c136b5b310d0e702e186d70cd16d1119ea8927347045124cb286b29297e5", size = 232494 },
|
275
|
+
{ url = "https://files.pythonhosted.org/packages/28/cc/39de85ac1d5652bc34ff2bee39ae251b1fdcaae53fab4b44cab75a432bc0/coverage-7.6.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:db1dab894cc139f67822a92910466531de5ea6034ddfd2b11c0d4c6257168073", size = 233611 },
|
276
|
+
{ url = "https://files.pythonhosted.org/packages/d1/2b/7eb011a9378911088708f121825a71134d0c15fac96972a0ae7a8f5a4049/coverage-7.6.9-cp310-cp310-win32.whl", hash = "sha256:41ff7b0da5af71a51b53f501a3bac65fb0ec311ebed1632e58fc6107f03b9198", size = 209712 },
|
277
|
+
{ url = "https://files.pythonhosted.org/packages/5b/35/c3f40a2269b416db34ce1dedf682a7132c26f857e33596830fa4deebabf9/coverage-7.6.9-cp310-cp310-win_amd64.whl", hash = "sha256:35371f8438028fdccfaf3570b31d98e8d9eda8bb1d6ab9473f5a390969e98717", size = 210553 },
|
278
|
+
{ url = "https://files.pythonhosted.org/packages/b1/91/b3dc2f7f38b5cca1236ab6bbb03e84046dd887707b4ec1db2baa47493b3b/coverage-7.6.9-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:932fc826442132dde42ee52cf66d941f581c685a6313feebed358411238f60f9", size = 207133 },
|
279
|
+
{ url = "https://files.pythonhosted.org/packages/0d/2b/53fd6cb34d443429a92b3ec737f4953627e38b3bee2a67a3c03425ba8573/coverage-7.6.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:085161be5f3b30fd9b3e7b9a8c301f935c8313dcf928a07b116324abea2c1c2c", size = 207577 },
|
280
|
+
{ url = "https://files.pythonhosted.org/packages/74/f2/68edb1e6826f980a124f21ea5be0d324180bf11de6fd1defcf9604f76df0/coverage-7.6.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ccc660a77e1c2bf24ddbce969af9447a9474790160cfb23de6be4fa88e3951c7", size = 239524 },
|
281
|
+
{ url = "https://files.pythonhosted.org/packages/d3/83/8fec0ee68c2c4a5ab5f0f8527277f84ed6f2bd1310ae8a19d0c5532253ab/coverage-7.6.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c69e42c892c018cd3c8d90da61d845f50a8243062b19d228189b0224150018a9", size = 236925 },
|
282
|
+
{ url = "https://files.pythonhosted.org/packages/8b/20/8f50e7c7ad271144afbc2c1c6ec5541a8c81773f59352f8db544cad1a0ec/coverage-7.6.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0824a28ec542a0be22f60c6ac36d679e0e262e5353203bea81d44ee81fe9c6d4", size = 238792 },
|
283
|
+
{ url = "https://files.pythonhosted.org/packages/6f/62/4ac2e5ad9e7a5c9ec351f38947528e11541f1f00e8a0cdce56f1ba7ae301/coverage-7.6.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4401ae5fc52ad8d26d2a5d8a7428b0f0c72431683f8e63e42e70606374c311a1", size = 237682 },
|
284
|
+
{ url = "https://files.pythonhosted.org/packages/58/2f/9d2203f012f3b0533c73336c74134b608742be1ce475a5c72012573cfbb4/coverage-7.6.9-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:98caba4476a6c8d59ec1eb00c7dd862ba9beca34085642d46ed503cc2d440d4b", size = 236310 },
|
285
|
+
{ url = "https://files.pythonhosted.org/packages/33/6d/31f6ab0b4f0f781636075f757eb02141ea1b34466d9d1526dbc586ed7078/coverage-7.6.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ee5defd1733fd6ec08b168bd4f5387d5b322f45ca9e0e6c817ea6c4cd36313e3", size = 237096 },
|
286
|
+
{ url = "https://files.pythonhosted.org/packages/7d/fb/e14c38adebbda9ed8b5f7f8e03340ac05d68d27b24397f8d47478927a333/coverage-7.6.9-cp311-cp311-win32.whl", hash = "sha256:f2d1ec60d6d256bdf298cb86b78dd715980828f50c46701abc3b0a2b3f8a0dc0", size = 209682 },
|
287
|
+
{ url = "https://files.pythonhosted.org/packages/a4/11/a782af39b019066af83fdc0e8825faaccbe9d7b19a803ddb753114b429cc/coverage-7.6.9-cp311-cp311-win_amd64.whl", hash = "sha256:0d59fd927b1f04de57a2ba0137166d31c1a6dd9e764ad4af552912d70428c92b", size = 210542 },
|
288
|
+
{ url = "https://files.pythonhosted.org/packages/60/52/b16af8989a2daf0f80a88522bd8e8eed90b5fcbdecf02a6888f3e80f6ba7/coverage-7.6.9-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:99e266ae0b5d15f1ca8d278a668df6f51cc4b854513daab5cae695ed7b721cf8", size = 207325 },
|
289
|
+
{ url = "https://files.pythonhosted.org/packages/0f/79/6b7826fca8846c1216a113227b9f114ac3e6eacf168b4adcad0cb974aaca/coverage-7.6.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9901d36492009a0a9b94b20e52ebfc8453bf49bb2b27bca2c9706f8b4f5a554a", size = 207563 },
|
290
|
+
{ url = "https://files.pythonhosted.org/packages/a7/07/0bc73da0ccaf45d0d64ef86d33b7d7fdeef84b4c44bf6b85fb12c215c5a6/coverage-7.6.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abd3e72dd5b97e3af4246cdada7738ef0e608168de952b837b8dd7e90341f015", size = 240580 },
|
291
|
+
{ url = "https://files.pythonhosted.org/packages/71/8a/9761f409910961647d892454687cedbaccb99aae828f49486734a82ede6e/coverage-7.6.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff74026a461eb0660366fb01c650c1d00f833a086b336bdad7ab00cc952072b3", size = 237613 },
|
292
|
+
{ url = "https://files.pythonhosted.org/packages/8b/10/ee7d696a17ac94f32f2dbda1e17e730bf798ae9931aec1fc01c1944cd4de/coverage-7.6.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65dad5a248823a4996724a88eb51d4b31587aa7aa428562dbe459c684e5787ae", size = 239684 },
|
293
|
+
{ url = "https://files.pythonhosted.org/packages/16/60/aa1066040d3c52fff051243c2d6ccda264da72dc6d199d047624d395b2b2/coverage-7.6.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:22be16571504c9ccea919fcedb459d5ab20d41172056206eb2994e2ff06118a4", size = 239112 },
|
294
|
+
{ url = "https://files.pythonhosted.org/packages/4e/e5/69f35344c6f932ba9028bf168d14a79fedb0dd4849b796d43c81ce75a3c9/coverage-7.6.9-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f957943bc718b87144ecaee70762bc2bc3f1a7a53c7b861103546d3a403f0a6", size = 237428 },
|
295
|
+
{ url = "https://files.pythonhosted.org/packages/32/20/adc895523c4a28f63441b8ac645abd74f9bdd499d2d175bef5b41fc7f92d/coverage-7.6.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0ae1387db4aecb1f485fb70a6c0148c6cdaebb6038f1d40089b1fc84a5db556f", size = 239098 },
|
296
|
+
{ url = "https://files.pythonhosted.org/packages/a9/a6/e0e74230c9bb3549ec8ffc137cfd16ea5d56e993d6bffed2218bff6187e3/coverage-7.6.9-cp312-cp312-win32.whl", hash = "sha256:1a330812d9cc7ac2182586f6d41b4d0fadf9be9049f350e0efb275c8ee8eb692", size = 209940 },
|
297
|
+
{ url = "https://files.pythonhosted.org/packages/3e/18/cb5b88349d4aa2f41ec78d65f92ea32572b30b3f55bc2b70e87578b8f434/coverage-7.6.9-cp312-cp312-win_amd64.whl", hash = "sha256:b12c6b18269ca471eedd41c1b6a1065b2f7827508edb9a7ed5555e9a56dcfc97", size = 210726 },
|
298
|
+
{ url = "https://files.pythonhosted.org/packages/35/26/9abab6539d2191dbda2ce8c97b67d74cbfc966cc5b25abb880ffc7c459bc/coverage-7.6.9-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:899b8cd4781c400454f2f64f7776a5d87bbd7b3e7f7bda0cb18f857bb1334664", size = 207356 },
|
299
|
+
{ url = "https://files.pythonhosted.org/packages/44/da/d49f19402240c93453f606e660a6676a2a1fbbaa6870cc23207790aa9697/coverage-7.6.9-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:61f70dc68bd36810972e55bbbe83674ea073dd1dcc121040a08cdf3416c5349c", size = 207614 },
|
300
|
+
{ url = "https://files.pythonhosted.org/packages/da/e6/93bb9bf85497816082ec8da6124c25efa2052bd4c887dd3b317b91990c9e/coverage-7.6.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a289d23d4c46f1a82d5db4abeb40b9b5be91731ee19a379d15790e53031c014", size = 240129 },
|
301
|
+
{ url = "https://files.pythonhosted.org/packages/df/65/6a824b9406fe066835c1274a9949e06f084d3e605eb1a602727a27ec2fe3/coverage-7.6.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e216d8044a356fc0337c7a2a0536d6de07888d7bcda76febcb8adc50bdbbd00", size = 237276 },
|
302
|
+
{ url = "https://files.pythonhosted.org/packages/9f/79/6c7a800913a9dd23ac8c8da133ebb556771a5a3d4df36b46767b1baffd35/coverage-7.6.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c026eb44f744acaa2bda7493dad903aa5bf5fc4f2554293a798d5606710055d", size = 239267 },
|
303
|
+
{ url = "https://files.pythonhosted.org/packages/57/e7/834d530293fdc8a63ba8ff70033d5182022e569eceb9aec7fc716b678a39/coverage-7.6.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e77363e8425325384f9d49272c54045bbed2f478e9dd698dbc65dbc37860eb0a", size = 238887 },
|
304
|
+
{ url = "https://files.pythonhosted.org/packages/15/05/ec9d6080852984f7163c96984444e7cd98b338fd045b191064f943ee1c08/coverage-7.6.9-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:777abfab476cf83b5177b84d7486497e034eb9eaea0d746ce0c1268c71652077", size = 236970 },
|
305
|
+
{ url = "https://files.pythonhosted.org/packages/0a/d8/775937670b93156aec29f694ce37f56214ed7597e1a75b4083ee4c32121c/coverage-7.6.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:447af20e25fdbe16f26e84eb714ba21d98868705cb138252d28bc400381f6ffb", size = 238831 },
|
306
|
+
{ url = "https://files.pythonhosted.org/packages/f4/58/88551cb7fdd5ec98cb6044e8814e38583436b14040a5ece15349c44c8f7c/coverage-7.6.9-cp313-cp313-win32.whl", hash = "sha256:d872ec5aeb086cbea771c573600d47944eea2dcba8be5f3ee649bfe3cb8dc9ba", size = 210000 },
|
307
|
+
{ url = "https://files.pythonhosted.org/packages/b7/12/cfbf49b95120872785ff8d56ab1c7fe3970a65e35010c311d7dd35c5fd00/coverage-7.6.9-cp313-cp313-win_amd64.whl", hash = "sha256:fd1213c86e48dfdc5a0cc676551db467495a95a662d2396ecd58e719191446e1", size = 210753 },
|
308
|
+
{ url = "https://files.pythonhosted.org/packages/7c/68/c1cb31445599b04bde21cbbaa6d21b47c5823cdfef99eae470dfce49c35a/coverage-7.6.9-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:ba9e7484d286cd5a43744e5f47b0b3fb457865baf07bafc6bee91896364e1419", size = 208091 },
|
309
|
+
{ url = "https://files.pythonhosted.org/packages/11/73/84b02c6b19c4a11eb2d5b5eabe926fb26c21c080e0852f5e5a4f01165f9e/coverage-7.6.9-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e5ea1cf0872ee455c03e5674b5bca5e3e68e159379c1af0903e89f5eba9ccc3a", size = 208369 },
|
310
|
+
{ url = "https://files.pythonhosted.org/packages/de/e0/ae5d878b72ff26df2e994a5c5b1c1f6a7507d976b23beecb1ed4c85411ef/coverage-7.6.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d10e07aa2b91835d6abec555ec8b2733347956991901eea6ffac295f83a30e4", size = 251089 },
|
311
|
+
{ url = "https://files.pythonhosted.org/packages/ab/9c/0aaac011aef95a93ef3cb2fba3fde30bc7e68a6635199ed469b1f5ea355a/coverage-7.6.9-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:13a9e2d3ee855db3dd6ea1ba5203316a1b1fd8eaeffc37c5b54987e61e4194ae", size = 246806 },
|
312
|
+
{ url = "https://files.pythonhosted.org/packages/f8/19/4d5d3ae66938a7dcb2f58cef3fa5386f838f469575b0bb568c8cc9e3a33d/coverage-7.6.9-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c38bf15a40ccf5619fa2fe8f26106c7e8e080d7760aeccb3722664c8656b030", size = 249164 },
|
313
|
+
{ url = "https://files.pythonhosted.org/packages/b3/0b/4ee8a7821f682af9ad440ae3c1e379da89a998883271f088102d7ca2473d/coverage-7.6.9-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:d5275455b3e4627c8e7154feaf7ee0743c2e7af82f6e3b561967b1cca755a0be", size = 248642 },
|
314
|
+
{ url = "https://files.pythonhosted.org/packages/8a/12/36ff1d52be18a16b4700f561852e7afd8df56363a5edcfb04cf26a0e19e0/coverage-7.6.9-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:8f8770dfc6e2c6a2d4569f411015c8d751c980d17a14b0530da2d7f27ffdd88e", size = 246516 },
|
315
|
+
{ url = "https://files.pythonhosted.org/packages/43/d0/8e258f6c3a527c1655602f4f576215e055ac704de2d101710a71a2affac2/coverage-7.6.9-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8d2dfa71665a29b153a9681edb1c8d9c1ea50dfc2375fb4dac99ea7e21a0bcd9", size = 247783 },
|
316
|
+
{ url = "https://files.pythonhosted.org/packages/a9/0d/1e4a48d289429d38aae3babdfcadbf35ca36bdcf3efc8f09b550a845bdb5/coverage-7.6.9-cp313-cp313t-win32.whl", hash = "sha256:5e6b86b5847a016d0fbd31ffe1001b63355ed309651851295315031ea7eb5a9b", size = 210646 },
|
317
|
+
{ url = "https://files.pythonhosted.org/packages/26/74/b0729f196f328ac55e42b1e22ec2f16d8bcafe4b8158a26ec9f1cdd1d93e/coverage-7.6.9-cp313-cp313t-win_amd64.whl", hash = "sha256:97ddc94d46088304772d21b060041c97fc16bdda13c6c7f9d8fcd8d5ae0d8611", size = 211815 },
|
318
|
+
{ url = "https://files.pythonhosted.org/packages/93/fe/8873d88999b8e4b0d8150df554d72d6943b3938bba328fcb5422572cfd84/coverage-7.6.9-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:adb697c0bd35100dc690de83154627fbab1f4f3c0386df266dded865fc50a902", size = 207022 },
|
319
|
+
{ url = "https://files.pythonhosted.org/packages/23/c1/5dc48dfe3714a6ae9d2cd128a9df39570e46d3831f19a9be84011e767209/coverage-7.6.9-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:be57b6d56e49c2739cdf776839a92330e933dd5e5d929966fbbd380c77f060be", size = 207458 },
|
320
|
+
{ url = "https://files.pythonhosted.org/packages/e8/08/5644e101c823f0b18aa5c408037c2438fad05e6eb9f9e6581459aa0bfb92/coverage-7.6.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f1592791f8204ae9166de22ba7e6705fa4ebd02936c09436a1bb85aabca3e599", size = 235494 },
|
321
|
+
{ url = "https://files.pythonhosted.org/packages/b2/02/995c019c0a2d70188d4d8184a0376eb28fcfb759981bb0e9961b463344fd/coverage-7.6.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4e12ae8cc979cf83d258acb5e1f1cf2f3f83524d1564a49d20b8bec14b637f08", size = 233416 },
|
322
|
+
{ url = "https://files.pythonhosted.org/packages/eb/d3/48ce8c9a89c7013f89ec7e01402e7a136a2e849c8f8664ea7f17b225295c/coverage-7.6.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb5555cff66c4d3d6213a296b360f9e1a8e323e74e0426b6c10ed7f4d021e464", size = 234546 },
|
323
|
+
{ url = "https://files.pythonhosted.org/packages/20/d2/11ac147bd76cc5d8a6254c9a9b6beaab51c3532ba0abdfaf669bf48d2c67/coverage-7.6.9-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:b9389a429e0e5142e69d5bf4a435dd688c14478a19bb901735cdf75e57b13845", size = 233655 },
|
324
|
+
{ url = "https://files.pythonhosted.org/packages/18/cb/6e35c5766041737f14c31ad02b5404ae6ec05d4e17ccffd69f6d99431e0a/coverage-7.6.9-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:592ac539812e9b46046620341498caf09ca21023c41c893e1eb9dbda00a70cbf", size = 232145 },
|
325
|
+
{ url = "https://files.pythonhosted.org/packages/ff/62/5de767f225e09ce959b71d1f3efc9e86e1c3de1fded85886bf705248905d/coverage-7.6.9-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a27801adef24cc30871da98a105f77995e13a25a505a0161911f6aafbd66e678", size = 233131 },
|
326
|
+
{ url = "https://files.pythonhosted.org/packages/65/72/bacb4b4c9da226e2343aa4bfebcb2bc008eda2f28aa913474aef27bfc397/coverage-7.6.9-cp39-cp39-win32.whl", hash = "sha256:8e3c3e38930cfb729cb8137d7f055e5a473ddaf1217966aa6238c88bd9fd50e6", size = 209735 },
|
327
|
+
{ url = "https://files.pythonhosted.org/packages/f4/4d/096d19dbd8998c9aaf8798078dd884f65652eb891fe7b0e657b5ac07411d/coverage-7.6.9-cp39-cp39-win_amd64.whl", hash = "sha256:e28bf44afa2b187cc9f41749138a64435bf340adfcacb5b2290c070ce99839d4", size = 210517 },
|
328
|
+
{ url = "https://files.pythonhosted.org/packages/15/0e/4ac9035ee2ee08d2b703fdad2d84283ec0bad3b46eb4ad6affb150174cb6/coverage-7.6.9-pp39.pp310-none-any.whl", hash = "sha256:f3ca78518bc6bc92828cd11867b121891d75cae4ea9e908d72030609b996db1b", size = 199270 },
|
329
329
|
]
|
330
330
|
|
331
331
|
[package.optional-dependencies]
|
@@ -364,9 +364,12 @@ wheels = [
|
|
364
364
|
|
365
365
|
[[package]]
|
366
366
|
name = "editorconfig"
|
367
|
-
version = "0.
|
367
|
+
version = "0.17.0"
|
368
368
|
source = { registry = "https://pypi.org/simple" }
|
369
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
369
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b4/29/785595a0d8b30ab8d2486559cfba1d46487b8dcbd99f74960b6b4cca92a4/editorconfig-0.17.0.tar.gz", hash = "sha256:8739052279699840065d3a9f5c125d7d5a98daeefe53b0e5274261d77cb49aa2", size = 13369 }
|
370
|
+
wheels = [
|
371
|
+
{ url = "https://files.pythonhosted.org/packages/af/e5/8dba39ea24ca3de0e954e668107692f4dfc13a85300a531fa9a39e83fde4/EditorConfig-0.17.0-py3-none-any.whl", hash = "sha256:fe491719c5f65959ec00b167d07740e7ffec9a3f362038c72b289330b9991dfc", size = 16276 },
|
372
|
+
]
|
370
373
|
|
371
374
|
[[package]]
|
372
375
|
name = "exceptiongroup"
|
@@ -386,6 +389,15 @@ wheels = [
|
|
386
389
|
{ url = "https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl", hash = "sha256:26dee51f1b80cebd6d0ca8e74dd8745419761d3bef34163928cbebbdc4749fdc", size = 40612 },
|
387
390
|
]
|
388
391
|
|
392
|
+
[[package]]
|
393
|
+
name = "fastjsonschema"
|
394
|
+
version = "2.21.1"
|
395
|
+
source = { registry = "https://pypi.org/simple" }
|
396
|
+
sdist = { url = "https://files.pythonhosted.org/packages/8b/50/4b769ce1ac4071a1ef6d86b1a3fb56cdc3a37615e8c5519e1af96cdac366/fastjsonschema-2.21.1.tar.gz", hash = "sha256:794d4f0a58f848961ba16af7b9c85a3e88cd360df008c59aac6fc5ae9323b5d4", size = 373939 }
|
397
|
+
wheels = [
|
398
|
+
{ url = "https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl", hash = "sha256:c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667", size = 23924 },
|
399
|
+
]
|
400
|
+
|
389
401
|
[[package]]
|
390
402
|
name = "filelock"
|
391
403
|
version = "3.16.1"
|
@@ -423,15 +435,15 @@ wheels = [
|
|
423
435
|
|
424
436
|
[[package]]
|
425
437
|
name = "flake8-bugbear"
|
426
|
-
version = "24.
|
438
|
+
version = "24.12.12"
|
427
439
|
source = { registry = "https://pypi.org/simple" }
|
428
440
|
dependencies = [
|
429
441
|
{ name = "attrs" },
|
430
442
|
{ name = "flake8" },
|
431
443
|
]
|
432
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
444
|
+
sdist = { url = "https://files.pythonhosted.org/packages/c7/25/48ba712ff589b0149f21135234f9bb45c14d6689acc6151b5e2ff8ac2ae9/flake8_bugbear-24.12.12.tar.gz", hash = "sha256:46273cef0a6b6ff48ca2d69e472f41420a42a46e24b2a8972e4f0d6733d12a64", size = 82907 }
|
433
445
|
wheels = [
|
434
|
-
{ url = "https://files.pythonhosted.org/packages/
|
446
|
+
{ url = "https://files.pythonhosted.org/packages/b9/21/0a875f75fbe4008bd171e2fefa413536258fe6b4cfaaa087986de74588f4/flake8_bugbear-24.12.12-py3-none-any.whl", hash = "sha256:1b6967436f65ca22a42e5373aaa6f2d87966ade9aa38d4baf2a1be550767545e", size = 36664 },
|
435
447
|
]
|
436
448
|
|
437
449
|
[[package]]
|
@@ -561,11 +573,11 @@ wheels = [
|
|
561
573
|
|
562
574
|
[[package]]
|
563
575
|
name = "identify"
|
564
|
-
version = "2.6.
|
576
|
+
version = "2.6.3"
|
565
577
|
source = { registry = "https://pypi.org/simple" }
|
566
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
578
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1a/5f/05f0d167be94585d502b4adf8c7af31f1dc0b1c7e14f9938a88fdbbcf4a7/identify-2.6.3.tar.gz", hash = "sha256:62f5dae9b5fef52c84cc188514e9ea4f3f636b1d8799ab5ebc475471f9e47a02", size = 99179 }
|
567
579
|
wheels = [
|
568
|
-
{ url = "https://files.pythonhosted.org/packages/
|
580
|
+
{ url = "https://files.pythonhosted.org/packages/c9/f5/09644a3ad803fae9eca8efa17e1f2aef380c7f0b02f7ec4e8d446e51d64a/identify-2.6.3-py2.py3-none-any.whl", hash = "sha256:9edba65473324c2ea9684b1f944fe3191db3345e50b6d04571d10ed164f8d7bd", size = 99049 },
|
569
581
|
]
|
570
582
|
|
571
583
|
[[package]]
|
@@ -638,18 +650,6 @@ dependencies = [
|
|
638
650
|
]
|
639
651
|
sdist = { url = "https://files.pythonhosted.org/packages/69/3e/dd37e1a7223247e3ef94714abf572415b89c4e121c4af48e9e4c392e2ca0/jsbeautifier-1.15.1.tar.gz", hash = "sha256:ebd733b560704c602d744eafc839db60a1ee9326e30a2a80c4adb8718adc1b24", size = 75606 }
|
640
652
|
|
641
|
-
[[package]]
|
642
|
-
name = "linkify-it-py"
|
643
|
-
version = "2.0.3"
|
644
|
-
source = { registry = "https://pypi.org/simple" }
|
645
|
-
dependencies = [
|
646
|
-
{ name = "uc-micro-py" },
|
647
|
-
]
|
648
|
-
sdist = { url = "https://files.pythonhosted.org/packages/2a/ae/bb56c6828e4797ba5a4821eec7c43b8bf40f69cda4d4f5f8c8a2810ec96a/linkify-it-py-2.0.3.tar.gz", hash = "sha256:68cda27e162e9215c17d786649d1da0021a451bdc436ef9e0fa0ba5234b9b048", size = 27946 }
|
649
|
-
wheels = [
|
650
|
-
{ url = "https://files.pythonhosted.org/packages/04/1e/b832de447dee8b582cac175871d2f6c3d5077cc56d5575cadba1fd1cccfa/linkify_it_py-2.0.3-py3-none-any.whl", hash = "sha256:6bcbc417b0ac14323382aef5c5192c0075bf8a9d6b41820a2b66371eac6b6d79", size = 19820 },
|
651
|
-
]
|
652
|
-
|
653
653
|
[[package]]
|
654
654
|
name = "markdown-it-py"
|
655
655
|
version = "3.0.0"
|
@@ -662,11 +662,6 @@ wheels = [
|
|
662
662
|
{ url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 },
|
663
663
|
]
|
664
664
|
|
665
|
-
[package.optional-dependencies]
|
666
|
-
linkify = [
|
667
|
-
{ name = "linkify-it-py" },
|
668
|
-
]
|
669
|
-
|
670
665
|
[[package]]
|
671
666
|
name = "markupsafe"
|
672
667
|
version = "3.0.2"
|
@@ -746,16 +741,16 @@ wheels = [
|
|
746
741
|
|
747
742
|
[[package]]
|
748
743
|
name = "mdformat"
|
749
|
-
version = "0.7.
|
744
|
+
version = "0.7.19"
|
750
745
|
source = { registry = "https://pypi.org/simple" }
|
751
746
|
dependencies = [
|
752
747
|
{ name = "importlib-metadata", marker = "python_full_version < '3.10'" },
|
753
748
|
{ name = "markdown-it-py" },
|
754
749
|
{ name = "tomli", marker = "python_full_version < '3.11'" },
|
755
750
|
]
|
756
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
751
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1c/bc/71d461905953d1c716c30e11ca513d7b43097c2d0aa46fde838e30eefe32/mdformat-0.7.19.tar.gz", hash = "sha256:a7d22df9802383432367864da907d2d147485b5cb6872e2d66937c1333e4d58a", size = 43513 }
|
757
752
|
wheels = [
|
758
|
-
{ url = "https://files.pythonhosted.org/packages/
|
753
|
+
{ url = "https://files.pythonhosted.org/packages/a5/7e/a7a904ec104e21c85333a02dd54456f53d5be31bee716217a1450844a044/mdformat-0.7.19-py3-none-any.whl", hash = "sha256:5c360992adc118cf1479cbbe92bb3bd66dcd7f1a5a3a2ad6675915622c678cf1", size = 33109 },
|
759
754
|
]
|
760
755
|
|
761
756
|
[[package]]
|
@@ -801,30 +796,30 @@ wheels = [
|
|
801
796
|
|
802
797
|
[[package]]
|
803
798
|
name = "mdformat-gfm"
|
804
|
-
version = "0.
|
799
|
+
version = "0.4.1"
|
805
800
|
source = { registry = "https://pypi.org/simple" }
|
806
801
|
dependencies = [
|
807
|
-
{ name = "markdown-it-py"
|
802
|
+
{ name = "markdown-it-py" },
|
808
803
|
{ name = "mdformat" },
|
809
804
|
{ name = "mdformat-tables" },
|
810
805
|
{ name = "mdit-py-plugins" },
|
811
806
|
]
|
812
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
807
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e5/db/873bad63b36e390a33bc0cf7222442010997d3ccf29a1889f24d28fdeddd/mdformat_gfm-0.4.1.tar.gz", hash = "sha256:e189e728e50cfb15746abc6b3178ca0e2bebbb7a8d3d98fbc9e24bc1a4c65564", size = 7528 }
|
813
808
|
wheels = [
|
814
|
-
{ url = "https://files.pythonhosted.org/packages/
|
809
|
+
{ url = "https://files.pythonhosted.org/packages/09/ba/3d4c680a2582593b8ba568ab60b119d93542fa39d757d65aae3c4f357e29/mdformat_gfm-0.4.1-py3-none-any.whl", hash = "sha256:63c92cfa5102f55779d4e04b16a79a6a5171e658c6c479175c0955fb4ca78dde", size = 8750 },
|
815
810
|
]
|
816
811
|
|
817
812
|
[[package]]
|
818
813
|
name = "mdformat-pyproject"
|
819
|
-
version = "0.0.
|
814
|
+
version = "0.0.2"
|
820
815
|
source = { registry = "https://pypi.org/simple" }
|
821
816
|
dependencies = [
|
822
817
|
{ name = "mdformat" },
|
823
818
|
{ name = "tomli", marker = "python_full_version < '3.11'" },
|
824
819
|
]
|
825
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
820
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5f/b0/6c7342afcb5518891f3c908f9e9f73fc399b727fe5b8133b31c8d468eae6/mdformat_pyproject-0.0.2.tar.gz", hash = "sha256:1638c4be0d239f49eea72089aafd06dc4ec603068ccc4868f91f0958b15b82c8", size = 5550 }
|
826
821
|
wheels = [
|
827
|
-
{ url = "https://files.pythonhosted.org/packages/
|
822
|
+
{ url = "https://files.pythonhosted.org/packages/bb/d7/0598e8de54d439ee7deda6bcba7816b36aaf28c26542ff9a0510cc29c079/mdformat_pyproject-0.0.2-py3-none-any.whl", hash = "sha256:e0791a335e53264d5589be353c519e230ac555b64fa076005bc64ca037717710", size = 4761 },
|
828
823
|
]
|
829
824
|
|
830
825
|
[[package]]
|
@@ -1097,7 +1092,7 @@ wheels = [
|
|
1097
1092
|
|
1098
1093
|
[[package]]
|
1099
1094
|
name = "pyproject-pre-commit"
|
1100
|
-
version = "0.3.
|
1095
|
+
version = "0.3.6"
|
1101
1096
|
source = { editable = "." }
|
1102
1097
|
dependencies = [
|
1103
1098
|
{ name = "autoflake" },
|
@@ -1134,6 +1129,7 @@ dependencies = [
|
|
1134
1129
|
{ name = "pre-commit" },
|
1135
1130
|
{ name = "pycodestyle" },
|
1136
1131
|
{ name = "shellcheck-py" },
|
1132
|
+
{ name = "validate-pyproject", extra = ["all"] },
|
1137
1133
|
]
|
1138
1134
|
|
1139
1135
|
[package.optional-dependencies]
|
@@ -1189,6 +1185,7 @@ requires-dist = [
|
|
1189
1185
|
{ name = "pycodestyle", specifier = ">=2.11.0" },
|
1190
1186
|
{ name = "ruff", marker = "extra == 'ruff'", specifier = ">=0.7.2" },
|
1191
1187
|
{ name = "shellcheck-py", specifier = ">=0.9.0.5" },
|
1188
|
+
{ name = "validate-pyproject", extras = ["all"], specifier = ">=0.22" },
|
1192
1189
|
]
|
1193
1190
|
|
1194
1191
|
[package.metadata.requires-dev]
|
@@ -1202,7 +1199,7 @@ dev = [
|
|
1202
1199
|
|
1203
1200
|
[[package]]
|
1204
1201
|
name = "pytest"
|
1205
|
-
version = "8.3.
|
1202
|
+
version = "8.3.4"
|
1206
1203
|
source = { registry = "https://pypi.org/simple" }
|
1207
1204
|
dependencies = [
|
1208
1205
|
{ name = "colorama", marker = "sys_platform == 'win32'" },
|
@@ -1212,9 +1209,9 @@ dependencies = [
|
|
1212
1209
|
{ name = "pluggy" },
|
1213
1210
|
{ name = "tomli", marker = "python_full_version < '3.11'" },
|
1214
1211
|
]
|
1215
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1212
|
+
sdist = { url = "https://files.pythonhosted.org/packages/05/35/30e0d83068951d90a01852cb1cef56e5d8a09d20c7f511634cc2f7e0372a/pytest-8.3.4.tar.gz", hash = "sha256:965370d062bce11e73868e0335abac31b4d3de0e82f4007408d242b4f8610761", size = 1445919 }
|
1216
1213
|
wheels = [
|
1217
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1214
|
+
{ url = "https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl", hash = "sha256:50e16d954148559c9a74109af1eaf0c945ba2d8f30f0a3d3335edde19788b6f6", size = 343083 },
|
1218
1215
|
]
|
1219
1216
|
|
1220
1217
|
[[package]]
|
@@ -1358,6 +1355,7 @@ wheels = [
|
|
1358
1355
|
{ url = "https://files.pythonhosted.org/packages/7f/b7/20c6f3c0b656fe609675d69bc135c03aac9e3865912444be6339207b6648/ruamel.yaml.clib-0.2.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f66efbc1caa63c088dead1c4170d148eabc9b80d95fb75b6c92ac0aad2437d76", size = 686712 },
|
1359
1356
|
{ url = "https://files.pythonhosted.org/packages/cd/11/d12dbf683471f888d354dac59593873c2b45feb193c5e3e0f2ebf85e68b9/ruamel.yaml.clib-0.2.12-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:22353049ba4181685023b25b5b51a574bce33e7f51c759371a7422dcae5402a6", size = 663936 },
|
1360
1357
|
{ url = "https://files.pythonhosted.org/packages/72/14/4c268f5077db5c83f743ee1daeb236269fa8577133a5cfa49f8b382baf13/ruamel.yaml.clib-0.2.12-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:932205970b9f9991b34f55136be327501903f7c66830e9760a8ffb15b07f05cd", size = 696580 },
|
1358
|
+
{ url = "https://files.pythonhosted.org/packages/30/fc/8cd12f189c6405a4c1cf37bd633aa740a9538c8e40497c231072d0fef5cf/ruamel.yaml.clib-0.2.12-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a52d48f4e7bf9005e8f0a89209bf9a73f7190ddf0489eee5eb51377385f59f2a", size = 663393 },
|
1361
1359
|
{ url = "https://files.pythonhosted.org/packages/80/29/c0a017b704aaf3cbf704989785cd9c5d5b8ccec2dae6ac0c53833c84e677/ruamel.yaml.clib-0.2.12-cp310-cp310-win32.whl", hash = "sha256:3eac5a91891ceb88138c113f9db04f3cebdae277f5d44eaa3651a4f573e6a5da", size = 100326 },
|
1362
1360
|
{ url = "https://files.pythonhosted.org/packages/3a/65/fa39d74db4e2d0cd252355732d966a460a41cd01c6353b820a0952432839/ruamel.yaml.clib-0.2.12-cp310-cp310-win_amd64.whl", hash = "sha256:ab007f2f5a87bd08ab1499bdf96f3d5c6ad4dcfa364884cb4549aa0154b13a28", size = 118079 },
|
1363
1361
|
{ url = "https://files.pythonhosted.org/packages/fb/8f/683c6ad562f558cbc4f7c029abcd9599148c51c54b5ef0f24f2638da9fbb/ruamel.yaml.clib-0.2.12-cp311-cp311-macosx_13_0_arm64.whl", hash = "sha256:4a6679521a58256a90b0d89e03992c15144c5f3858f40d7c18886023d7943db6", size = 132224 },
|
@@ -1366,6 +1364,7 @@ wheels = [
|
|
1366
1364
|
{ url = "https://files.pythonhosted.org/packages/86/29/88c2567bc893c84d88b4c48027367c3562ae69121d568e8a3f3a8d363f4d/ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:811ea1594b8a0fb466172c384267a4e5e367298af6b228931f273b111f17ef52", size = 703012 },
|
1367
1365
|
{ url = "https://files.pythonhosted.org/packages/11/46/879763c619b5470820f0cd6ca97d134771e502776bc2b844d2adb6e37753/ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cf12567a7b565cbf65d438dec6cfbe2917d3c1bdddfce84a9930b7d35ea59642", size = 704352 },
|
1368
1366
|
{ url = "https://files.pythonhosted.org/packages/02/80/ece7e6034256a4186bbe50dee28cd032d816974941a6abf6a9d65e4228a7/ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7dd5adc8b930b12c8fc5b99e2d535a09889941aa0d0bd06f4749e9a9397c71d2", size = 737344 },
|
1367
|
+
{ url = "https://files.pythonhosted.org/packages/f0/ca/e4106ac7e80efbabdf4bf91d3d32fc424e41418458251712f5672eada9ce/ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1492a6051dab8d912fc2adeef0e8c72216b24d57bd896ea607cb90bb0c4981d3", size = 714498 },
|
1369
1368
|
{ url = "https://files.pythonhosted.org/packages/67/58/b1f60a1d591b771298ffa0428237afb092c7f29ae23bad93420b1eb10703/ruamel.yaml.clib-0.2.12-cp311-cp311-win32.whl", hash = "sha256:bd0a08f0bab19093c54e18a14a10b4322e1eacc5217056f3c063bd2f59853ce4", size = 100205 },
|
1370
1369
|
{ url = "https://files.pythonhosted.org/packages/b4/4f/b52f634c9548a9291a70dfce26ca7ebce388235c93588a1068028ea23fcc/ruamel.yaml.clib-0.2.12-cp311-cp311-win_amd64.whl", hash = "sha256:a274fb2cb086c7a3dea4322ec27f4cb5cc4b6298adb583ab0e211a4682f241eb", size = 118185 },
|
1371
1370
|
{ url = "https://files.pythonhosted.org/packages/48/41/e7a405afbdc26af961678474a55373e1b323605a4f5e2ddd4a80ea80f628/ruamel.yaml.clib-0.2.12-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:20b0f8dc160ba83b6dcc0e256846e1a02d044e13f7ea74a3d1d56ede4e48c632", size = 133433 },
|
@@ -1374,6 +1373,7 @@ wheels = [
|
|
1374
1373
|
{ url = "https://files.pythonhosted.org/packages/52/a9/d39f3c5ada0a3bb2870d7db41901125dbe2434fa4f12ca8c5b83a42d7c53/ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:749c16fcc4a2b09f28843cda5a193e0283e47454b63ec4b81eaa2242f50e4ccd", size = 706497 },
|
1375
1374
|
{ url = "https://files.pythonhosted.org/packages/b0/fa/097e38135dadd9ac25aecf2a54be17ddf6e4c23e43d538492a90ab3d71c6/ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bf165fef1f223beae7333275156ab2022cffe255dcc51c27f066b4370da81e31", size = 698042 },
|
1376
1375
|
{ url = "https://files.pythonhosted.org/packages/ec/d5/a659ca6f503b9379b930f13bc6b130c9f176469b73b9834296822a83a132/ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:32621c177bbf782ca5a18ba4d7af0f1082a3f6e517ac2a18b3974d4edf349680", size = 745831 },
|
1376
|
+
{ url = "https://files.pythonhosted.org/packages/db/5d/36619b61ffa2429eeaefaab4f3374666adf36ad8ac6330d855848d7d36fd/ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b82a7c94a498853aa0b272fd5bc67f29008da798d4f93a2f9f289feb8426a58d", size = 715692 },
|
1377
1377
|
{ url = "https://files.pythonhosted.org/packages/b1/82/85cb92f15a4231c89b95dfe08b09eb6adca929ef7df7e17ab59902b6f589/ruamel.yaml.clib-0.2.12-cp312-cp312-win32.whl", hash = "sha256:e8c4ebfcfd57177b572e2040777b8abc537cdef58a2120e830124946aa9b42c5", size = 98777 },
|
1378
1378
|
{ url = "https://files.pythonhosted.org/packages/d7/8f/c3654f6f1ddb75daf3922c3d8fc6005b1ab56671ad56ffb874d908bfa668/ruamel.yaml.clib-0.2.12-cp312-cp312-win_amd64.whl", hash = "sha256:0467c5965282c62203273b838ae77c0d29d7638c8a4e3a1c8bdd3602c10904e4", size = 115523 },
|
1379
1379
|
{ url = "https://files.pythonhosted.org/packages/29/00/4864119668d71a5fa45678f380b5923ff410701565821925c69780356ffa/ruamel.yaml.clib-0.2.12-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:4c8c5d82f50bb53986a5e02d1b3092b03622c02c2eb78e29bec33fd9593bae1a", size = 132011 },
|
@@ -1382,6 +1382,7 @@ wheels = [
|
|
1382
1382
|
{ url = "https://files.pythonhosted.org/packages/e2/a9/28f60726d29dfc01b8decdb385de4ced2ced9faeb37a847bd5cf26836815/ruamel.yaml.clib-0.2.12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96777d473c05ee3e5e3c3e999f5d23c6f4ec5b0c38c098b3a5229085f74236c6", size = 701785 },
|
1383
1383
|
{ url = "https://files.pythonhosted.org/packages/84/7e/8e7ec45920daa7f76046578e4f677a3215fe8f18ee30a9cb7627a19d9b4c/ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:3bc2a80e6420ca8b7d3590791e2dfc709c88ab9152c00eeb511c9875ce5778bf", size = 693017 },
|
1384
1384
|
{ url = "https://files.pythonhosted.org/packages/c5/b3/d650eaade4ca225f02a648321e1ab835b9d361c60d51150bac49063b83fa/ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:e188d2699864c11c36cdfdada94d781fd5d6b0071cd9c427bceb08ad3d7c70e1", size = 741270 },
|
1385
|
+
{ url = "https://files.pythonhosted.org/packages/87/b8/01c29b924dcbbed75cc45b30c30d565d763b9c4d540545a0eeecffb8f09c/ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4f6f3eac23941b32afccc23081e1f50612bdbe4e982012ef4f5797986828cd01", size = 709059 },
|
1385
1386
|
{ url = "https://files.pythonhosted.org/packages/30/8c/ed73f047a73638257aa9377ad356bea4d96125b305c34a28766f4445cc0f/ruamel.yaml.clib-0.2.12-cp313-cp313-win32.whl", hash = "sha256:6442cb36270b3afb1b4951f060eccca1ce49f3d087ca1ca4563a6eb479cb3de6", size = 98583 },
|
1386
1387
|
{ url = "https://files.pythonhosted.org/packages/b0/85/e8e751d8791564dd333d5d9a4eab0a7a115f7e349595417fd50ecae3395c/ruamel.yaml.clib-0.2.12-cp313-cp313-win_amd64.whl", hash = "sha256:e5b8daf27af0b90da7bb903a876477a9e6d7270be6146906b276605997c7e9a3", size = 115190 },
|
1387
1388
|
{ url = "https://files.pythonhosted.org/packages/e5/46/ccdef7a84ad745c37cb3d9a81790f28fbc9adf9c237dba682017b123294e/ruamel.yaml.clib-0.2.12-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:fc4b630cd3fa2cf7fce38afa91d7cfe844a9f75d7f0f36393fa98815e911d987", size = 131834 },
|
@@ -1390,33 +1391,34 @@ wheels = [
|
|
1390
1391
|
{ url = "https://files.pythonhosted.org/packages/da/1c/23497017c554fc06ff5701b29355522cff850f626337fff35d9ab352cb18/ruamel.yaml.clib-0.2.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2f1c3765db32be59d18ab3953f43ab62a761327aafc1594a2a1fbe038b8b8a7", size = 689072 },
|
1391
1392
|
{ url = "https://files.pythonhosted.org/packages/68/e6/f3d4ff3223f9ea49c3b7169ec0268e42bd49f87c70c0e3e853895e4a7ae2/ruamel.yaml.clib-0.2.12-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d85252669dc32f98ebcd5d36768f5d4faeaeaa2d655ac0473be490ecdae3c285", size = 667091 },
|
1392
1393
|
{ url = "https://files.pythonhosted.org/packages/84/62/ead07043527642491e5011b143f44b81ef80f1025a96069b7210e0f2f0f3/ruamel.yaml.clib-0.2.12-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e143ada795c341b56de9418c58d028989093ee611aa27ffb9b7f609c00d813ed", size = 699111 },
|
1394
|
+
{ url = "https://files.pythonhosted.org/packages/52/b3/fe4d84446f7e4887e3bea7ceff0a7df23790b5ed625f830e79ace88ebefb/ruamel.yaml.clib-0.2.12-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2c59aa6170b990d8d2719323e628aaf36f3bfbc1c26279c0eeeb24d05d2d11c7", size = 666365 },
|
1393
1395
|
{ url = "https://files.pythonhosted.org/packages/6e/b3/7feb99a00bfaa5c6868617bb7651308afde85e5a0b23cd187fe5de65feeb/ruamel.yaml.clib-0.2.12-cp39-cp39-win32.whl", hash = "sha256:beffaed67936fbbeffd10966a4eb53c402fafd3d6833770516bf7314bc6ffa12", size = 100863 },
|
1394
1396
|
{ url = "https://files.pythonhosted.org/packages/93/07/de635108684b7a5bb06e432b0930c5a04b6c59efe73bd966d8db3cc208f2/ruamel.yaml.clib-0.2.12-cp39-cp39-win_amd64.whl", hash = "sha256:040ae85536960525ea62868b642bdb0c2cc6021c9f9d507810c0c604e66f5a7b", size = 118653 },
|
1395
1397
|
]
|
1396
1398
|
|
1397
1399
|
[[package]]
|
1398
1400
|
name = "ruff"
|
1399
|
-
version = "0.
|
1400
|
-
source = { registry = "https://pypi.org/simple" }
|
1401
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1402
|
-
wheels = [
|
1403
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1404
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1405
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1406
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1407
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1408
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1409
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1410
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1411
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1412
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1413
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1414
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1415
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1416
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1417
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1418
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1419
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1401
|
+
version = "0.8.3"
|
1402
|
+
source = { registry = "https://pypi.org/simple" }
|
1403
|
+
sdist = { url = "https://files.pythonhosted.org/packages/bf/5e/683c7ef7a696923223e7d95ca06755d6e2acbc5fd8382b2912a28008137c/ruff-0.8.3.tar.gz", hash = "sha256:5e7558304353b84279042fc584a4f4cb8a07ae79b2bf3da1a7551d960b5626d3", size = 3378522 }
|
1404
|
+
wheels = [
|
1405
|
+
{ url = "https://files.pythonhosted.org/packages/f8/c4/bfdbb8b9c419ff3b52479af8581026eeaac3764946fdb463dec043441b7d/ruff-0.8.3-py3-none-linux_armv6l.whl", hash = "sha256:8d5d273ffffff0acd3db5bf626d4b131aa5a5ada1276126231c4174543ce20d6", size = 10535860 },
|
1406
|
+
{ url = "https://files.pythonhosted.org/packages/ef/c5/0aabdc9314b4b6f051168ac45227e2aa8e1c6d82718a547455e40c9c9faa/ruff-0.8.3-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:e4d66a21de39f15c9757d00c50c8cdd20ac84f55684ca56def7891a025d7e939", size = 10346327 },
|
1407
|
+
{ url = "https://files.pythonhosted.org/packages/1a/78/4843a59e7e7b398d6019cf91ab06502fd95397b99b2b858798fbab9151f5/ruff-0.8.3-py3-none-macosx_11_0_arm64.whl", hash = "sha256:c356e770811858bd20832af696ff6c7e884701115094f427b64b25093d6d932d", size = 9942585 },
|
1408
|
+
{ url = "https://files.pythonhosted.org/packages/91/5a/642ed8f1ba23ffc2dd347697e01eef3c42fad6ac76603be4a8c3a9d6311e/ruff-0.8.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c0a60a825e3e177116c84009d5ebaa90cf40dfab56e1358d1df4e29a9a14b13", size = 10797597 },
|
1409
|
+
{ url = "https://files.pythonhosted.org/packages/30/25/2e654bc7226da09a49730a1a2ea6e89f843b362db80b4b2a7a4f948ac986/ruff-0.8.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:75fb782f4db39501210ac093c79c3de581d306624575eddd7e4e13747e61ba18", size = 10307244 },
|
1410
|
+
{ url = "https://files.pythonhosted.org/packages/c0/2d/a224d56bcd4383583db53c2b8f410ebf1200866984aa6eb9b5a70f04e71f/ruff-0.8.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f26bc76a133ecb09a38b7868737eded6941b70a6d34ef53a4027e83913b6502", size = 11362439 },
|
1411
|
+
{ url = "https://files.pythonhosted.org/packages/82/01/03e2857f9c371b8767d3e909f06a33bbdac880df17f17f93d6f6951c3381/ruff-0.8.3-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:01b14b2f72a37390c1b13477c1c02d53184f728be2f3ffc3ace5b44e9e87b90d", size = 12078538 },
|
1412
|
+
{ url = "https://files.pythonhosted.org/packages/af/ae/ff7f97b355da16d748ceec50e1604a8215d3659b36b38025a922e0612e9b/ruff-0.8.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:53babd6e63e31f4e96ec95ea0d962298f9f0d9cc5990a1bbb023a6baf2503a82", size = 11616172 },
|
1413
|
+
{ url = "https://files.pythonhosted.org/packages/6a/d0/6156d4d1e53ebd17747049afe801c5d7e3014d9b2f398b9236fe36ba4320/ruff-0.8.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1ae441ce4cf925b7f363d33cd6570c51435972d697e3e58928973994e56e1452", size = 12919886 },
|
1414
|
+
{ url = "https://files.pythonhosted.org/packages/4e/84/affcb30bacb94f6036a128ad5de0e29f543d3f67ee42b490b17d68e44b8a/ruff-0.8.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7c65bc0cadce32255e93c57d57ecc2cca23149edd52714c0c5d6fa11ec328cd", size = 11212599 },
|
1415
|
+
{ url = "https://files.pythonhosted.org/packages/60/b9/5694716bdefd8f73df7c0104334156c38fb0f77673d2966a5a1345bab94d/ruff-0.8.3-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:5be450bb18f23f0edc5a4e5585c17a56ba88920d598f04a06bd9fd76d324cb20", size = 10784637 },
|
1416
|
+
{ url = "https://files.pythonhosted.org/packages/24/7e/0e8f835103ac7da81c3663eedf79dec8359e9ae9a3b0d704bae50be59176/ruff-0.8.3-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:8faeae3827eaa77f5721f09b9472a18c749139c891dbc17f45e72d8f2ca1f8fc", size = 10390591 },
|
1417
|
+
{ url = "https://files.pythonhosted.org/packages/27/da/180ec771fc01c004045962ce017ca419a0281f4bfaf867ed0020f555b56e/ruff-0.8.3-py3-none-musllinux_1_2_i686.whl", hash = "sha256:db503486e1cf074b9808403991663e4277f5c664d3fe237ee0d994d1305bb060", size = 10894298 },
|
1418
|
+
{ url = "https://files.pythonhosted.org/packages/6d/f8/29f241742ed3954eb2222314b02db29f531a15cab3238d1295e8657c5f18/ruff-0.8.3-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:6567be9fb62fbd7a099209257fef4ad2c3153b60579818b31a23c886ed4147ea", size = 11275965 },
|
1419
|
+
{ url = "https://files.pythonhosted.org/packages/79/e9/5b81dc9afc8a80884405b230b9429efeef76d04caead904bd213f453b973/ruff-0.8.3-py3-none-win32.whl", hash = "sha256:19048f2f878f3ee4583fc6cb23fb636e48c2635e30fb2022b3a1cd293402f964", size = 8807651 },
|
1420
|
+
{ url = "https://files.pythonhosted.org/packages/ea/67/7291461066007617b59a707887b90e319b6a043c79b4d19979f86b7a20e7/ruff-0.8.3-py3-none-win_amd64.whl", hash = "sha256:f7df94f57d7418fa7c3ffb650757e0c2b96cf2501a0b192c18e4fb5571dfada9", size = 9625289 },
|
1421
|
+
{ url = "https://files.pythonhosted.org/packages/03/8f/e4fa95288b81233356d9a9dcaed057e5b0adc6399aa8fd0f6d784041c9c3/ruff-0.8.3-py3-none-win_arm64.whl", hash = "sha256:fe2756edf68ea79707c8d68b78ca9a58ed9af22e430430491ee03e718b5e4936", size = 9078754 },
|
1420
1422
|
]
|
1421
1423
|
|
1422
1424
|
[[package]]
|
@@ -1433,11 +1435,11 @@ wheels = [
|
|
1433
1435
|
|
1434
1436
|
[[package]]
|
1435
1437
|
name = "six"
|
1436
|
-
version = "1.
|
1438
|
+
version = "1.17.0"
|
1437
1439
|
source = { registry = "https://pypi.org/simple" }
|
1438
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1440
|
+
sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031 }
|
1439
1441
|
wheels = [
|
1440
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1442
|
+
{ url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050 },
|
1441
1443
|
]
|
1442
1444
|
|
1443
1445
|
[[package]]
|
@@ -1543,14 +1545,14 @@ wheels = [
|
|
1543
1545
|
|
1544
1546
|
[[package]]
|
1545
1547
|
name = "stevedore"
|
1546
|
-
version = "5.
|
1548
|
+
version = "5.4.0"
|
1547
1549
|
source = { registry = "https://pypi.org/simple" }
|
1548
1550
|
dependencies = [
|
1549
1551
|
{ name = "pbr" },
|
1550
1552
|
]
|
1551
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1553
|
+
sdist = { url = "https://files.pythonhosted.org/packages/4a/e9/4eedccff8332cc40cc60ddd3b28d4c3e255ee7e9c65679fa4533ab98f598/stevedore-5.4.0.tar.gz", hash = "sha256:79e92235ecb828fe952b6b8b0c6c87863248631922c8e8e0fa5b17b232c4514d", size = 513899 }
|
1552
1554
|
wheels = [
|
1553
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1555
|
+
{ url = "https://files.pythonhosted.org/packages/8f/73/d0091d22a65b55e8fb6aca7b3b6713b5a261dd01cec4cfd28ed127ac0cfc/stevedore-5.4.0-py3-none-any.whl", hash = "sha256:b0be3c4748b3ea7b854b265dcb4caa891015e442416422be16f8b31756107857", size = 49534 },
|
1554
1556
|
]
|
1555
1557
|
|
1556
1558
|
[[package]]
|
@@ -1578,11 +1580,50 @@ wheels = [
|
|
1578
1580
|
|
1579
1581
|
[[package]]
|
1580
1582
|
name = "tomli"
|
1581
|
-
version = "2.
|
1582
|
-
source = { registry = "https://pypi.org/simple" }
|
1583
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1584
|
-
wheels = [
|
1585
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1583
|
+
version = "2.2.1"
|
1584
|
+
source = { registry = "https://pypi.org/simple" }
|
1585
|
+
sdist = { url = "https://files.pythonhosted.org/packages/18/87/302344fed471e44a87289cf4967697d07e532f2421fdaf868a303cbae4ff/tomli-2.2.1.tar.gz", hash = "sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff", size = 17175 }
|
1586
|
+
wheels = [
|
1587
|
+
{ url = "https://files.pythonhosted.org/packages/43/ca/75707e6efa2b37c77dadb324ae7d9571cb424e61ea73fad7c56c2d14527f/tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249", size = 131077 },
|
1588
|
+
{ url = "https://files.pythonhosted.org/packages/c7/16/51ae563a8615d472fdbffc43a3f3d46588c264ac4f024f63f01283becfbb/tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6", size = 123429 },
|
1589
|
+
{ url = "https://files.pythonhosted.org/packages/f1/dd/4f6cd1e7b160041db83c694abc78e100473c15d54620083dbd5aae7b990e/tomli-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece47d672db52ac607a3d9599a9d48dcb2f2f735c6c2d1f34130085bb12b112a", size = 226067 },
|
1590
|
+
{ url = "https://files.pythonhosted.org/packages/a9/6b/c54ede5dc70d648cc6361eaf429304b02f2871a345bbdd51e993d6cdf550/tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee", size = 236030 },
|
1591
|
+
{ url = "https://files.pythonhosted.org/packages/1f/47/999514fa49cfaf7a92c805a86c3c43f4215621855d151b61c602abb38091/tomli-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c954d2250168d28797dd4e3ac5cf812a406cd5a92674ee4c8f123c889786aa8e", size = 240898 },
|
1592
|
+
{ url = "https://files.pythonhosted.org/packages/73/41/0a01279a7ae09ee1573b423318e7934674ce06eb33f50936655071d81a24/tomli-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8dd28b3e155b80f4d54beb40a441d366adcfe740969820caf156c019fb5c7ec4", size = 229894 },
|
1593
|
+
{ url = "https://files.pythonhosted.org/packages/55/18/5d8bc5b0a0362311ce4d18830a5d28943667599a60d20118074ea1b01bb7/tomli-2.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e59e304978767a54663af13c07b3d1af22ddee3bb2fb0618ca1593e4f593a106", size = 245319 },
|
1594
|
+
{ url = "https://files.pythonhosted.org/packages/92/a3/7ade0576d17f3cdf5ff44d61390d4b3febb8a9fc2b480c75c47ea048c646/tomli-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:33580bccab0338d00994d7f16f4c4ec25b776af3ffaac1ed74e0b3fc95e885a8", size = 238273 },
|
1595
|
+
{ url = "https://files.pythonhosted.org/packages/72/6f/fa64ef058ac1446a1e51110c375339b3ec6be245af9d14c87c4a6412dd32/tomli-2.2.1-cp311-cp311-win32.whl", hash = "sha256:465af0e0875402f1d226519c9904f37254b3045fc5084697cefb9bdde1ff99ff", size = 98310 },
|
1596
|
+
{ url = "https://files.pythonhosted.org/packages/6a/1c/4a2dcde4a51b81be3530565e92eda625d94dafb46dbeb15069df4caffc34/tomli-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b", size = 108309 },
|
1597
|
+
{ url = "https://files.pythonhosted.org/packages/52/e1/f8af4c2fcde17500422858155aeb0d7e93477a0d59a98e56cbfe75070fd0/tomli-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea", size = 132762 },
|
1598
|
+
{ url = "https://files.pythonhosted.org/packages/03/b8/152c68bb84fc00396b83e7bbddd5ec0bd3dd409db4195e2a9b3e398ad2e3/tomli-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8d57ca8095a641b8237d5b079147646153d22552f1c637fd3ba7f4b0b29167a8", size = 123453 },
|
1599
|
+
{ url = "https://files.pythonhosted.org/packages/c8/d6/fc9267af9166f79ac528ff7e8c55c8181ded34eb4b0e93daa767b8841573/tomli-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e340144ad7ae1533cb897d406382b4b6fede8890a03738ff1683af800d54192", size = 233486 },
|
1600
|
+
{ url = "https://files.pythonhosted.org/packages/5c/51/51c3f2884d7bab89af25f678447ea7d297b53b5a3b5730a7cb2ef6069f07/tomli-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222", size = 242349 },
|
1601
|
+
{ url = "https://files.pythonhosted.org/packages/ab/df/bfa89627d13a5cc22402e441e8a931ef2108403db390ff3345c05253935e/tomli-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40741994320b232529c802f8bc86da4e1aa9f413db394617b9a256ae0f9a7f77", size = 252159 },
|
1602
|
+
{ url = "https://files.pythonhosted.org/packages/9e/6e/fa2b916dced65763a5168c6ccb91066f7639bdc88b48adda990db10c8c0b/tomli-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:400e720fe168c0f8521520190686ef8ef033fb19fc493da09779e592861b78c6", size = 237243 },
|
1603
|
+
{ url = "https://files.pythonhosted.org/packages/b4/04/885d3b1f650e1153cbb93a6a9782c58a972b94ea4483ae4ac5cedd5e4a09/tomli-2.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:02abe224de6ae62c19f090f68da4e27b10af2b93213d36cf44e6e1c5abd19fdd", size = 259645 },
|
1604
|
+
{ url = "https://files.pythonhosted.org/packages/9c/de/6b432d66e986e501586da298e28ebeefd3edc2c780f3ad73d22566034239/tomli-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b82ebccc8c8a36f2094e969560a1b836758481f3dc360ce9a3277c65f374285e", size = 244584 },
|
1605
|
+
{ url = "https://files.pythonhosted.org/packages/1c/9a/47c0449b98e6e7d1be6cbac02f93dd79003234ddc4aaab6ba07a9a7482e2/tomli-2.2.1-cp312-cp312-win32.whl", hash = "sha256:889f80ef92701b9dbb224e49ec87c645ce5df3fa2cc548664eb8a25e03127a98", size = 98875 },
|
1606
|
+
{ url = "https://files.pythonhosted.org/packages/ef/60/9b9638f081c6f1261e2688bd487625cd1e660d0a85bd469e91d8db969734/tomli-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4", size = 109418 },
|
1607
|
+
{ url = "https://files.pythonhosted.org/packages/04/90/2ee5f2e0362cb8a0b6499dc44f4d7d48f8fff06d28ba46e6f1eaa61a1388/tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7", size = 132708 },
|
1608
|
+
{ url = "https://files.pythonhosted.org/packages/c0/ec/46b4108816de6b385141f082ba99e315501ccd0a2ea23db4a100dd3990ea/tomli-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c", size = 123582 },
|
1609
|
+
{ url = "https://files.pythonhosted.org/packages/a0/bd/b470466d0137b37b68d24556c38a0cc819e8febe392d5b199dcd7f578365/tomli-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13", size = 232543 },
|
1610
|
+
{ url = "https://files.pythonhosted.org/packages/d9/e5/82e80ff3b751373f7cead2815bcbe2d51c895b3c990686741a8e56ec42ab/tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281", size = 241691 },
|
1611
|
+
{ url = "https://files.pythonhosted.org/packages/05/7e/2a110bc2713557d6a1bfb06af23dd01e7dde52b6ee7dadc589868f9abfac/tomli-2.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272", size = 251170 },
|
1612
|
+
{ url = "https://files.pythonhosted.org/packages/64/7b/22d713946efe00e0adbcdfd6d1aa119ae03fd0b60ebed51ebb3fa9f5a2e5/tomli-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140", size = 236530 },
|
1613
|
+
{ url = "https://files.pythonhosted.org/packages/38/31/3a76f67da4b0cf37b742ca76beaf819dca0ebef26d78fc794a576e08accf/tomli-2.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2", size = 258666 },
|
1614
|
+
{ url = "https://files.pythonhosted.org/packages/07/10/5af1293da642aded87e8a988753945d0cf7e00a9452d3911dd3bb354c9e2/tomli-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744", size = 243954 },
|
1615
|
+
{ url = "https://files.pythonhosted.org/packages/5b/b9/1ed31d167be802da0fc95020d04cd27b7d7065cc6fbefdd2f9186f60d7bd/tomli-2.2.1-cp313-cp313-win32.whl", hash = "sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec", size = 98724 },
|
1616
|
+
{ url = "https://files.pythonhosted.org/packages/c7/32/b0963458706accd9afcfeb867c0f9175a741bf7b19cd424230714d722198/tomli-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69", size = 109383 },
|
1617
|
+
{ url = "https://files.pythonhosted.org/packages/6e/c2/61d3e0f47e2b74ef40a68b9e6ad5984f6241a942f7cd3bbfbdbd03861ea9/tomli-2.2.1-py3-none-any.whl", hash = "sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc", size = 14257 },
|
1618
|
+
]
|
1619
|
+
|
1620
|
+
[[package]]
|
1621
|
+
name = "trove-classifiers"
|
1622
|
+
version = "2024.10.21.16"
|
1623
|
+
source = { registry = "https://pypi.org/simple" }
|
1624
|
+
sdist = { url = "https://files.pythonhosted.org/packages/99/85/92c2667cf221b37648041ce9319427f92fa76cbec634aad844e67e284706/trove_classifiers-2024.10.21.16.tar.gz", hash = "sha256:17cbd055d67d5e9d9de63293a8732943fabc21574e4c7b74edf112b4928cf5f3", size = 16153 }
|
1625
|
+
wheels = [
|
1626
|
+
{ url = "https://files.pythonhosted.org/packages/35/35/5055ab8d215af853d07bbff1a74edf48f91ed308f037380a5ca52dd73348/trove_classifiers-2024.10.21.16-py3-none-any.whl", hash = "sha256:0fb11f1e995a757807a8ef1c03829fbd4998d817319abcef1f33165750f103be", size = 13546 },
|
1586
1627
|
]
|
1587
1628
|
|
1588
1629
|
[[package]]
|
@@ -1595,35 +1636,45 @@ wheels = [
|
|
1595
1636
|
]
|
1596
1637
|
|
1597
1638
|
[[package]]
|
1598
|
-
name = "
|
1599
|
-
version = "
|
1639
|
+
name = "urllib3"
|
1640
|
+
version = "2.2.3"
|
1600
1641
|
source = { registry = "https://pypi.org/simple" }
|
1601
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1642
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ed/63/22ba4ebfe7430b76388e7cd448d5478814d3032121827c12a2cc287e2260/urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9", size = 300677 }
|
1602
1643
|
wheels = [
|
1603
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1644
|
+
{ url = "https://files.pythonhosted.org/packages/ce/d9/5f4c13cecde62396b0d3fe530a50ccea91e7dfc1ccf0e09c228841bb5ba8/urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac", size = 126338 },
|
1604
1645
|
]
|
1605
1646
|
|
1606
1647
|
[[package]]
|
1607
|
-
name = "
|
1608
|
-
version = "
|
1648
|
+
name = "validate-pyproject"
|
1649
|
+
version = "0.23"
|
1609
1650
|
source = { registry = "https://pypi.org/simple" }
|
1610
|
-
|
1651
|
+
dependencies = [
|
1652
|
+
{ name = "fastjsonschema" },
|
1653
|
+
]
|
1654
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5c/07/b24689b11ef23226bdd3eebd8d89e103236f4c91043b71d707612a4c3ad7/validate_pyproject-0.23.tar.gz", hash = "sha256:12b2714bf647265c60e4f24a20674428bd891a8aa168a1be535bb99f8c0af0e3", size = 113397 }
|
1611
1655
|
wheels = [
|
1612
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1656
|
+
{ url = "https://files.pythonhosted.org/packages/7a/36/45f4bb7275b5afd70b1e4bc8b6bcf0c488cde20e39d72a3c98998ba8a9f5/validate_pyproject-0.23-py3-none-any.whl", hash = "sha256:8c2e678d7d52cff56eb1670a627eaa808fe6334d7a7f15218d12b89642d8a077", size = 52726 },
|
1657
|
+
]
|
1658
|
+
|
1659
|
+
[package.optional-dependencies]
|
1660
|
+
all = [
|
1661
|
+
{ name = "packaging" },
|
1662
|
+
{ name = "tomli", marker = "python_full_version < '3.11'" },
|
1663
|
+
{ name = "trove-classifiers" },
|
1613
1664
|
]
|
1614
1665
|
|
1615
1666
|
[[package]]
|
1616
1667
|
name = "virtualenv"
|
1617
|
-
version = "20.
|
1668
|
+
version = "20.28.0"
|
1618
1669
|
source = { registry = "https://pypi.org/simple" }
|
1619
1670
|
dependencies = [
|
1620
1671
|
{ name = "distlib" },
|
1621
1672
|
{ name = "filelock" },
|
1622
1673
|
{ name = "platformdirs" },
|
1623
1674
|
]
|
1624
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1675
|
+
sdist = { url = "https://files.pythonhosted.org/packages/bf/75/53316a5a8050069228a2f6d11f32046cfa94fbb6cc3f08703f59b873de2e/virtualenv-20.28.0.tar.gz", hash = "sha256:2c9c3262bb8e7b87ea801d715fae4495e6032450c71d2309be9550e7364049aa", size = 7650368 }
|
1625
1676
|
wheels = [
|
1626
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1677
|
+
{ url = "https://files.pythonhosted.org/packages/10/f9/0919cf6f1432a8c4baa62511f8f8da8225432d22e83e3476f5be1a1edc6e/virtualenv-20.28.0-py3-none-any.whl", hash = "sha256:23eae1b4516ecd610481eda647f3a7c09aea295055337331bb4e6892ecce47b0", size = 4276702 },
|
1627
1678
|
]
|
1628
1679
|
|
1629
1680
|
[[package]]
|
@@ -1637,9 +1688,9 @@ wheels = [
|
|
1637
1688
|
|
1638
1689
|
[[package]]
|
1639
1690
|
name = "zipp"
|
1640
|
-
version = "3.
|
1691
|
+
version = "3.21.0"
|
1641
1692
|
source = { registry = "https://pypi.org/simple" }
|
1642
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1693
|
+
sdist = { url = "https://files.pythonhosted.org/packages/3f/50/bad581df71744867e9468ebd0bcd6505de3b275e06f202c2cb016e3ff56f/zipp-3.21.0.tar.gz", hash = "sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4", size = 24545 }
|
1643
1694
|
wheels = [
|
1644
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1695
|
+
{ url = "https://files.pythonhosted.org/packages/b7/1a/7e4798e9339adc931158c9d69ecc34f5e6791489d469f5e50ec15e35f458/zipp-3.21.0-py3-none-any.whl", hash = "sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931", size = 9630 },
|
1645
1696
|
]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/src/pyproject_pre_commit/__init__.py
RENAMED
File without changes
|
{pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/src/pyproject_pre_commit/__version__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{pyproject_pre_commit-0.3.3 → pyproject_pre_commit-0.3.6}/tests/test_pyproject_pre_commit.py
RENAMED
File without changes
|
File without changes
|