crackerjack 0.24.4__tar.gz → 0.24.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.
Potentially problematic release.
This version of crackerjack might be problematic. Click here for more details.
- {crackerjack-0.24.4 → crackerjack-0.24.6}/PKG-INFO +1 -1
- {crackerjack-0.24.4 → crackerjack-0.24.6}/crackerjack/crackerjack.py +1 -1
- {crackerjack-0.24.4 → crackerjack-0.24.6}/crackerjack/pyproject.toml +2 -6
- {crackerjack-0.24.4 → crackerjack-0.24.6}/pyproject.toml +2 -6
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/test_crackerjack.py +6 -6
- {crackerjack-0.24.4 → crackerjack-0.24.6}/uv.lock +55 -55
- {crackerjack-0.24.4 → crackerjack-0.24.6}/.envrc +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/.github/FUNDING.yml +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/.gitignore +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/.libcst.codemod.yaml +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/.pre-commit-config-ai.yaml +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/.pre-commit-config.yaml +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/.windsurfrules +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/CLAUDE.md +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/LICENSE +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/README-AI-AGENT.md +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/README.md +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/RULES.md +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/crackerjack/.gitignore +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/crackerjack/.libcst.codemod.yaml +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/crackerjack/.pdm.toml +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/crackerjack/.pre-commit-config-ai.yaml +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/crackerjack/.pre-commit-config.yaml +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/crackerjack/__init__.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/crackerjack/__main__.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/crackerjack/errors.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/crackerjack/interactive.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/crackerjack/py313.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/TESTING.md +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/__init__.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/conftest.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/data/comments_sample.txt +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/data/docstrings_sample.txt +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/data/expected_comments_sample.txt +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/data/init.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/test_crackerjack_runner.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/test_errors.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/test_interactive.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/test_interactive_run.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/test_main.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/test_multiline_functions.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/test_py313_advanced.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/test_py313_features.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/test_pytest_features.py +0 -0
- {crackerjack-0.24.4 → crackerjack-0.24.6}/tests/test_structured_errors.py +0 -0
|
@@ -1199,7 +1199,7 @@ class Crackerjack(BaseModel, arbitrary_types_allowed=True):
|
|
|
1199
1199
|
"[bold bright_red]❌ Build failed. Please fix errors.[/bold bright_red]"
|
|
1200
1200
|
)
|
|
1201
1201
|
raise SystemExit(1)
|
|
1202
|
-
self.execute_command(["uv", "publish"
|
|
1202
|
+
self.execute_command(["uv", "publish"])
|
|
1203
1203
|
|
|
1204
1204
|
def _commit_and_push(self, options: OptionsProtocol) -> None:
|
|
1205
1205
|
if options.commit:
|
|
@@ -4,7 +4,7 @@ requires = [ "hatchling" ]
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "crackerjack"
|
|
7
|
-
version = "0.24.
|
|
7
|
+
version = "0.24.5"
|
|
8
8
|
description = "Crackerjack: code quality toolkit"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
keywords = [
|
|
@@ -200,11 +200,7 @@ pythonVersion = "3.13"
|
|
|
200
200
|
|
|
201
201
|
[tool.uv]
|
|
202
202
|
keyring-provider = "subprocess"
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
[[tool.uv.index]]
|
|
206
|
-
name = "pypi"
|
|
207
|
-
url = "https://upload.pypi.org/legacy/"
|
|
203
|
+
publish-url = "https://upload.pypi.org/legacy/"
|
|
208
204
|
check-url = "https://pypi.org/simple/"
|
|
209
205
|
|
|
210
206
|
[tool.vulture]
|
|
@@ -4,7 +4,7 @@ requires = [ "hatchling" ]
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "crackerjack"
|
|
7
|
-
version = "0.24.
|
|
7
|
+
version = "0.24.6"
|
|
8
8
|
description = "Crackerjack: code quality toolkit"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
keywords = [
|
|
@@ -200,11 +200,7 @@ pythonVersion = "3.13"
|
|
|
200
200
|
|
|
201
201
|
[tool.uv]
|
|
202
202
|
keyring-provider = "subprocess"
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
[[tool.uv.index]]
|
|
206
|
-
name = "pypi"
|
|
207
|
-
url = "https://upload.pypi.org/legacy/"
|
|
203
|
+
publish-url = "https://upload.pypi.org/legacy/"
|
|
208
204
|
check-url = "https://pypi.org/simple/"
|
|
209
205
|
|
|
210
206
|
[tool.vulture]
|
|
@@ -737,7 +737,7 @@ class TestCrackerjackProcess:
|
|
|
737
737
|
with patch.object(crackerjack.console, "print"):
|
|
738
738
|
crackerjack._publish_project(options)
|
|
739
739
|
assert ["uv", "build"] in actual_calls
|
|
740
|
-
assert ["uv", "publish"
|
|
740
|
+
assert ["uv", "publish"] in actual_calls
|
|
741
741
|
|
|
742
742
|
def test_publish_with_authentication(self) -> None:
|
|
743
743
|
options = OptionsForTesting(publish=BumpOption.patch)
|
|
@@ -751,7 +751,7 @@ class TestCrackerjackProcess:
|
|
|
751
751
|
return subprocess.CompletedProcess(
|
|
752
752
|
args=cmd, returncode=0, stdout="build output", stderr=""
|
|
753
753
|
)
|
|
754
|
-
elif cmd == ["uv", "publish"
|
|
754
|
+
elif cmd == ["uv", "publish"]:
|
|
755
755
|
return subprocess.CompletedProcess(
|
|
756
756
|
args=cmd, returncode=0, stdout="publish output", stderr=""
|
|
757
757
|
)
|
|
@@ -771,7 +771,7 @@ class TestCrackerjackProcess:
|
|
|
771
771
|
with patch.object(crackerjack.console, "print"):
|
|
772
772
|
crackerjack._publish_project(options)
|
|
773
773
|
assert ["uv", "build"] in actual_calls
|
|
774
|
-
assert ["uv", "publish"
|
|
774
|
+
assert ["uv", "publish"] in actual_calls
|
|
775
775
|
|
|
776
776
|
def test_build_failure(self) -> None:
|
|
777
777
|
options = OptionsForTesting(publish=BumpOption.patch)
|
|
@@ -803,7 +803,7 @@ class TestCrackerjackProcess:
|
|
|
803
803
|
crackerjack._publish_project(options)
|
|
804
804
|
assert exc_info.value.code == 1
|
|
805
805
|
assert ["uv", "build"] in actual_calls
|
|
806
|
-
assert ["uv", "publish"
|
|
806
|
+
assert ["uv", "publish"] not in actual_calls
|
|
807
807
|
|
|
808
808
|
def test_publish_failure(self) -> None:
|
|
809
809
|
options = OptionsForTesting(publish=BumpOption.patch)
|
|
@@ -815,7 +815,7 @@ class TestCrackerjackProcess:
|
|
|
815
815
|
actual_calls.append(cmd)
|
|
816
816
|
if cmd == ["uv", "build"]:
|
|
817
817
|
return MagicMock(returncode=0, stdout="build output")
|
|
818
|
-
elif cmd == ["uv", "publish"
|
|
818
|
+
elif cmd == ["uv", "publish"]:
|
|
819
819
|
return MagicMock(
|
|
820
820
|
returncode=1, stdout="publish output", stderr="Publish failed"
|
|
821
821
|
)
|
|
@@ -833,7 +833,7 @@ class TestCrackerjackProcess:
|
|
|
833
833
|
with patch.object(crackerjack.console, "print") as mock_print:
|
|
834
834
|
crackerjack._publish_project(options)
|
|
835
835
|
assert ["uv", "build"] in actual_calls
|
|
836
|
-
assert ["uv", "publish"
|
|
836
|
+
assert ["uv", "publish"] in actual_calls
|
|
837
837
|
assert any(
|
|
838
838
|
"build output" in str(call)
|
|
839
839
|
for call in mock_print.mock_calls
|
|
@@ -5,7 +5,7 @@ requires-python = ">=3.13"
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "annotated-types"
|
|
7
7
|
version = "0.7.0"
|
|
8
|
-
source = { registry = "https://pypi.org/simple
|
|
8
|
+
source = { registry = "https://pypi.org/simple" }
|
|
9
9
|
sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081, upload-time = "2024-05-20T21:33:25.928Z" }
|
|
10
10
|
wheels = [
|
|
11
11
|
{ url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643, upload-time = "2024-05-20T21:33:24.1Z" },
|
|
@@ -14,7 +14,7 @@ wheels = [
|
|
|
14
14
|
[[package]]
|
|
15
15
|
name = "autotyping"
|
|
16
16
|
version = "24.9.0"
|
|
17
|
-
source = { registry = "https://pypi.org/simple
|
|
17
|
+
source = { registry = "https://pypi.org/simple" }
|
|
18
18
|
dependencies = [
|
|
19
19
|
{ name = "libcst" },
|
|
20
20
|
{ name = "typing-extensions" },
|
|
@@ -27,7 +27,7 @@ wheels = [
|
|
|
27
27
|
[[package]]
|
|
28
28
|
name = "cffi"
|
|
29
29
|
version = "1.17.1"
|
|
30
|
-
source = { registry = "https://pypi.org/simple
|
|
30
|
+
source = { registry = "https://pypi.org/simple" }
|
|
31
31
|
dependencies = [
|
|
32
32
|
{ name = "pycparser" },
|
|
33
33
|
]
|
|
@@ -45,7 +45,7 @@ wheels = [
|
|
|
45
45
|
[[package]]
|
|
46
46
|
name = "cfgv"
|
|
47
47
|
version = "3.4.0"
|
|
48
|
-
source = { registry = "https://pypi.org/simple
|
|
48
|
+
source = { registry = "https://pypi.org/simple" }
|
|
49
49
|
sdist = { url = "https://files.pythonhosted.org/packages/11/74/539e56497d9bd1d484fd863dd69cbbfa653cd2aa27abfe35653494d85e94/cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560", size = 7114, upload-time = "2023-08-12T20:38:17.776Z" }
|
|
50
50
|
wheels = [
|
|
51
51
|
{ url = "https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9", size = 7249, upload-time = "2023-08-12T20:38:16.269Z" },
|
|
@@ -54,7 +54,7 @@ wheels = [
|
|
|
54
54
|
[[package]]
|
|
55
55
|
name = "click"
|
|
56
56
|
version = "8.2.1"
|
|
57
|
-
source = { registry = "https://pypi.org/simple
|
|
57
|
+
source = { registry = "https://pypi.org/simple" }
|
|
58
58
|
dependencies = [
|
|
59
59
|
{ name = "colorama", marker = "sys_platform == 'win32'" },
|
|
60
60
|
]
|
|
@@ -66,7 +66,7 @@ wheels = [
|
|
|
66
66
|
[[package]]
|
|
67
67
|
name = "colorama"
|
|
68
68
|
version = "0.4.6"
|
|
69
|
-
source = { registry = "https://pypi.org/simple
|
|
69
|
+
source = { registry = "https://pypi.org/simple" }
|
|
70
70
|
sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" }
|
|
71
71
|
wheels = [
|
|
72
72
|
{ url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" },
|
|
@@ -75,7 +75,7 @@ wheels = [
|
|
|
75
75
|
[[package]]
|
|
76
76
|
name = "coverage"
|
|
77
77
|
version = "7.9.2"
|
|
78
|
-
source = { registry = "https://pypi.org/simple
|
|
78
|
+
source = { registry = "https://pypi.org/simple" }
|
|
79
79
|
sdist = { url = "https://files.pythonhosted.org/packages/04/b7/c0465ca253df10a9e8dae0692a4ae6e9726d245390aaef92360e1d6d3832/coverage-7.9.2.tar.gz", hash = "sha256:997024fa51e3290264ffd7492ec97d0690293ccd2b45a6cd7d82d945a4a80c8b", size = 813556, upload-time = "2025-07-03T10:54:15.101Z" }
|
|
80
80
|
wheels = [
|
|
81
81
|
{ url = "https://files.pythonhosted.org/packages/94/9d/7a8edf7acbcaa5e5c489a646226bed9591ee1c5e6a84733c0140e9ce1ae1/coverage-7.9.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:985abe7f242e0d7bba228ab01070fde1d6c8fa12f142e43debe9ed1dde686038", size = 212367, upload-time = "2025-07-03T10:53:25.811Z" },
|
|
@@ -105,7 +105,7 @@ wheels = [
|
|
|
105
105
|
|
|
106
106
|
[[package]]
|
|
107
107
|
name = "crackerjack"
|
|
108
|
-
version = "0.24.
|
|
108
|
+
version = "0.24.6"
|
|
109
109
|
source = { editable = "." }
|
|
110
110
|
dependencies = [
|
|
111
111
|
{ name = "autotyping" },
|
|
@@ -159,7 +159,7 @@ dev = [{ name = "pyyaml", specifier = ">=6.0.2" }]
|
|
|
159
159
|
[[package]]
|
|
160
160
|
name = "cryptography"
|
|
161
161
|
version = "45.0.5"
|
|
162
|
-
source = { registry = "https://pypi.org/simple
|
|
162
|
+
source = { registry = "https://pypi.org/simple" }
|
|
163
163
|
dependencies = [
|
|
164
164
|
{ name = "cffi", marker = "platform_python_implementation != 'PyPy'" },
|
|
165
165
|
]
|
|
@@ -188,7 +188,7 @@ wheels = [
|
|
|
188
188
|
[[package]]
|
|
189
189
|
name = "distlib"
|
|
190
190
|
version = "0.3.9"
|
|
191
|
-
source = { registry = "https://pypi.org/simple
|
|
191
|
+
source = { registry = "https://pypi.org/simple" }
|
|
192
192
|
sdist = { url = "https://files.pythonhosted.org/packages/0d/dd/1bec4c5ddb504ca60fc29472f3d27e8d4da1257a854e1d96742f15c1d02d/distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403", size = 613923, upload-time = "2024-10-09T18:35:47.551Z" }
|
|
193
193
|
wheels = [
|
|
194
194
|
{ url = "https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87", size = 468973, upload-time = "2024-10-09T18:35:44.272Z" },
|
|
@@ -197,7 +197,7 @@ wheels = [
|
|
|
197
197
|
[[package]]
|
|
198
198
|
name = "execnet"
|
|
199
199
|
version = "2.1.1"
|
|
200
|
-
source = { registry = "https://pypi.org/simple
|
|
200
|
+
source = { registry = "https://pypi.org/simple" }
|
|
201
201
|
sdist = { url = "https://files.pythonhosted.org/packages/bb/ff/b4c0dc78fbe20c3e59c0c7334de0c27eb4001a2b2017999af398bf730817/execnet-2.1.1.tar.gz", hash = "sha256:5189b52c6121c24feae288166ab41b32549c7e2348652736540b9e6e7d4e72e3", size = 166524, upload-time = "2024-04-08T09:04:19.245Z" }
|
|
202
202
|
wheels = [
|
|
203
203
|
{ url = "https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl", hash = "sha256:26dee51f1b80cebd6d0ca8e74dd8745419761d3bef34163928cbebbdc4749fdc", size = 40612, upload-time = "2024-04-08T09:04:17.414Z" },
|
|
@@ -206,7 +206,7 @@ wheels = [
|
|
|
206
206
|
[[package]]
|
|
207
207
|
name = "filelock"
|
|
208
208
|
version = "3.18.0"
|
|
209
|
-
source = { registry = "https://pypi.org/simple
|
|
209
|
+
source = { registry = "https://pypi.org/simple" }
|
|
210
210
|
sdist = { url = "https://files.pythonhosted.org/packages/0a/10/c23352565a6544bdc5353e0b15fc1c563352101f30e24bf500207a54df9a/filelock-3.18.0.tar.gz", hash = "sha256:adbc88eabb99d2fec8c9c1b229b171f18afa655400173ddc653d5d01501fb9f2", size = 18075, upload-time = "2025-03-14T07:11:40.47Z" }
|
|
211
211
|
wheels = [
|
|
212
212
|
{ url = "https://files.pythonhosted.org/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl", hash = "sha256:c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de", size = 16215, upload-time = "2025-03-14T07:11:39.145Z" },
|
|
@@ -215,7 +215,7 @@ wheels = [
|
|
|
215
215
|
[[package]]
|
|
216
216
|
name = "hatchling"
|
|
217
217
|
version = "1.27.0"
|
|
218
|
-
source = { registry = "https://pypi.org/simple
|
|
218
|
+
source = { registry = "https://pypi.org/simple" }
|
|
219
219
|
dependencies = [
|
|
220
220
|
{ name = "packaging" },
|
|
221
221
|
{ name = "pathspec" },
|
|
@@ -230,7 +230,7 @@ wheels = [
|
|
|
230
230
|
[[package]]
|
|
231
231
|
name = "identify"
|
|
232
232
|
version = "2.6.12"
|
|
233
|
-
source = { registry = "https://pypi.org/simple
|
|
233
|
+
source = { registry = "https://pypi.org/simple" }
|
|
234
234
|
sdist = { url = "https://files.pythonhosted.org/packages/a2/88/d193a27416618628a5eea64e3223acd800b40749a96ffb322a9b55a49ed1/identify-2.6.12.tar.gz", hash = "sha256:d8de45749f1efb108badef65ee8386f0f7bb19a7f26185f74de6367bffbaf0e6", size = 99254, upload-time = "2025-05-23T20:37:53.3Z" }
|
|
235
235
|
wheels = [
|
|
236
236
|
{ url = "https://files.pythonhosted.org/packages/7a/cd/18f8da995b658420625f7ef13f037be53ae04ec5ad33f9b718240dcfd48c/identify-2.6.12-py2.py3-none-any.whl", hash = "sha256:ad9672d5a72e0d2ff7c5c8809b62dfa60458626352fb0eb7b55e69bdc45334a2", size = 99145, upload-time = "2025-05-23T20:37:51.495Z" },
|
|
@@ -239,7 +239,7 @@ wheels = [
|
|
|
239
239
|
[[package]]
|
|
240
240
|
name = "iniconfig"
|
|
241
241
|
version = "2.1.0"
|
|
242
|
-
source = { registry = "https://pypi.org/simple
|
|
242
|
+
source = { registry = "https://pypi.org/simple" }
|
|
243
243
|
sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793, upload-time = "2025-03-19T20:09:59.721Z" }
|
|
244
244
|
wheels = [
|
|
245
245
|
{ url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050, upload-time = "2025-03-19T20:10:01.071Z" },
|
|
@@ -248,7 +248,7 @@ wheels = [
|
|
|
248
248
|
[[package]]
|
|
249
249
|
name = "jaraco-classes"
|
|
250
250
|
version = "3.4.0"
|
|
251
|
-
source = { registry = "https://pypi.org/simple
|
|
251
|
+
source = { registry = "https://pypi.org/simple" }
|
|
252
252
|
dependencies = [
|
|
253
253
|
{ name = "more-itertools" },
|
|
254
254
|
]
|
|
@@ -260,7 +260,7 @@ wheels = [
|
|
|
260
260
|
[[package]]
|
|
261
261
|
name = "jaraco-context"
|
|
262
262
|
version = "6.0.1"
|
|
263
|
-
source = { registry = "https://pypi.org/simple
|
|
263
|
+
source = { registry = "https://pypi.org/simple" }
|
|
264
264
|
sdist = { url = "https://files.pythonhosted.org/packages/df/ad/f3777b81bf0b6e7bc7514a1656d3e637b2e8e15fab2ce3235730b3e7a4e6/jaraco_context-6.0.1.tar.gz", hash = "sha256:9bae4ea555cf0b14938dc0aee7c9f32ed303aa20a3b73e7dc80111628792d1b3", size = 13912, upload-time = "2024-08-20T03:39:27.358Z" }
|
|
265
265
|
wheels = [
|
|
266
266
|
{ url = "https://files.pythonhosted.org/packages/ff/db/0c52c4cf5e4bd9f5d7135ec7669a3a767af21b3a308e1ed3674881e52b62/jaraco.context-6.0.1-py3-none-any.whl", hash = "sha256:f797fc481b490edb305122c9181830a3a5b76d84ef6d1aef2fb9b47ab956f9e4", size = 6825, upload-time = "2024-08-20T03:39:25.966Z" },
|
|
@@ -269,7 +269,7 @@ wheels = [
|
|
|
269
269
|
[[package]]
|
|
270
270
|
name = "jaraco-functools"
|
|
271
271
|
version = "4.2.1"
|
|
272
|
-
source = { registry = "https://pypi.org/simple
|
|
272
|
+
source = { registry = "https://pypi.org/simple" }
|
|
273
273
|
dependencies = [
|
|
274
274
|
{ name = "more-itertools" },
|
|
275
275
|
]
|
|
@@ -281,7 +281,7 @@ wheels = [
|
|
|
281
281
|
[[package]]
|
|
282
282
|
name = "jeepney"
|
|
283
283
|
version = "0.9.0"
|
|
284
|
-
source = { registry = "https://pypi.org/simple
|
|
284
|
+
source = { registry = "https://pypi.org/simple" }
|
|
285
285
|
sdist = { url = "https://files.pythonhosted.org/packages/7b/6f/357efd7602486741aa73ffc0617fb310a29b588ed0fd69c2399acbb85b0c/jeepney-0.9.0.tar.gz", hash = "sha256:cf0e9e845622b81e4a28df94c40345400256ec608d0e55bb8a3feaa9163f5732", size = 106758, upload-time = "2025-02-27T18:51:01.684Z" }
|
|
286
286
|
wheels = [
|
|
287
287
|
{ url = "https://files.pythonhosted.org/packages/b2/a3/e137168c9c44d18eff0376253da9f1e9234d0239e0ee230d2fee6cea8e55/jeepney-0.9.0-py3-none-any.whl", hash = "sha256:97e5714520c16fc0a45695e5365a2e11b81ea79bba796e26f9f1d178cb182683", size = 49010, upload-time = "2025-02-27T18:51:00.104Z" },
|
|
@@ -290,7 +290,7 @@ wheels = [
|
|
|
290
290
|
[[package]]
|
|
291
291
|
name = "keyring"
|
|
292
292
|
version = "25.6.0"
|
|
293
|
-
source = { registry = "https://pypi.org/simple
|
|
293
|
+
source = { registry = "https://pypi.org/simple" }
|
|
294
294
|
dependencies = [
|
|
295
295
|
{ name = "jaraco-classes" },
|
|
296
296
|
{ name = "jaraco-context" },
|
|
@@ -307,7 +307,7 @@ wheels = [
|
|
|
307
307
|
[[package]]
|
|
308
308
|
name = "libcst"
|
|
309
309
|
version = "1.8.2"
|
|
310
|
-
source = { registry = "https://pypi.org/simple
|
|
310
|
+
source = { registry = "https://pypi.org/simple" }
|
|
311
311
|
dependencies = [
|
|
312
312
|
{ name = "pyyaml-ft" },
|
|
313
313
|
]
|
|
@@ -338,7 +338,7 @@ wheels = [
|
|
|
338
338
|
[[package]]
|
|
339
339
|
name = "markdown-it-py"
|
|
340
340
|
version = "3.0.0"
|
|
341
|
-
source = { registry = "https://pypi.org/simple
|
|
341
|
+
source = { registry = "https://pypi.org/simple" }
|
|
342
342
|
dependencies = [
|
|
343
343
|
{ name = "mdurl" },
|
|
344
344
|
]
|
|
@@ -350,7 +350,7 @@ wheels = [
|
|
|
350
350
|
[[package]]
|
|
351
351
|
name = "mdurl"
|
|
352
352
|
version = "0.1.2"
|
|
353
|
-
source = { registry = "https://pypi.org/simple
|
|
353
|
+
source = { registry = "https://pypi.org/simple" }
|
|
354
354
|
sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" }
|
|
355
355
|
wheels = [
|
|
356
356
|
{ url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" },
|
|
@@ -359,7 +359,7 @@ wheels = [
|
|
|
359
359
|
[[package]]
|
|
360
360
|
name = "more-itertools"
|
|
361
361
|
version = "10.7.0"
|
|
362
|
-
source = { registry = "https://pypi.org/simple
|
|
362
|
+
source = { registry = "https://pypi.org/simple" }
|
|
363
363
|
sdist = { url = "https://files.pythonhosted.org/packages/ce/a0/834b0cebabbfc7e311f30b46c8188790a37f89fc8d756660346fe5abfd09/more_itertools-10.7.0.tar.gz", hash = "sha256:9fddd5403be01a94b204faadcff459ec3568cf110265d3c54323e1e866ad29d3", size = 127671, upload-time = "2025-04-22T14:17:41.838Z" }
|
|
364
364
|
wheels = [
|
|
365
365
|
{ url = "https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl", hash = "sha256:d43980384673cb07d2f7d2d918c616b30c659c089ee23953f601d6609c67510e", size = 65278, upload-time = "2025-04-22T14:17:40.49Z" },
|
|
@@ -368,7 +368,7 @@ wheels = [
|
|
|
368
368
|
[[package]]
|
|
369
369
|
name = "nodeenv"
|
|
370
370
|
version = "1.9.1"
|
|
371
|
-
source = { registry = "https://pypi.org/simple
|
|
371
|
+
source = { registry = "https://pypi.org/simple" }
|
|
372
372
|
sdist = { url = "https://files.pythonhosted.org/packages/43/16/fc88b08840de0e0a72a2f9d8c6bae36be573e475a6326ae854bcc549fc45/nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", size = 47437, upload-time = "2024-06-04T18:44:11.171Z" }
|
|
373
373
|
wheels = [
|
|
374
374
|
{ url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314, upload-time = "2024-06-04T18:44:08.352Z" },
|
|
@@ -377,7 +377,7 @@ wheels = [
|
|
|
377
377
|
[[package]]
|
|
378
378
|
name = "packaging"
|
|
379
379
|
version = "25.0"
|
|
380
|
-
source = { registry = "https://pypi.org/simple
|
|
380
|
+
source = { registry = "https://pypi.org/simple" }
|
|
381
381
|
sdist = { url = "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f", size = 165727, upload-time = "2025-04-19T11:48:59.673Z" }
|
|
382
382
|
wheels = [
|
|
383
383
|
{ url = "https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484", size = 66469, upload-time = "2025-04-19T11:48:57.875Z" },
|
|
@@ -386,7 +386,7 @@ wheels = [
|
|
|
386
386
|
[[package]]
|
|
387
387
|
name = "pathspec"
|
|
388
388
|
version = "0.12.1"
|
|
389
|
-
source = { registry = "https://pypi.org/simple
|
|
389
|
+
source = { registry = "https://pypi.org/simple" }
|
|
390
390
|
sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043, upload-time = "2023-12-10T22:30:45Z" }
|
|
391
391
|
wheels = [
|
|
392
392
|
{ url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191, upload-time = "2023-12-10T22:30:43.14Z" },
|
|
@@ -395,7 +395,7 @@ wheels = [
|
|
|
395
395
|
[[package]]
|
|
396
396
|
name = "platformdirs"
|
|
397
397
|
version = "4.3.8"
|
|
398
|
-
source = { registry = "https://pypi.org/simple
|
|
398
|
+
source = { registry = "https://pypi.org/simple" }
|
|
399
399
|
sdist = { url = "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz", hash = "sha256:3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc", size = 21362, upload-time = "2025-05-07T22:47:42.121Z" }
|
|
400
400
|
wheels = [
|
|
401
401
|
{ url = "https://files.pythonhosted.org/packages/fe/39/979e8e21520d4e47a0bbe349e2713c0aac6f3d853d0e5b34d76206c439aa/platformdirs-4.3.8-py3-none-any.whl", hash = "sha256:ff7059bb7eb1179e2685604f4aaf157cfd9535242bd23742eadc3c13542139b4", size = 18567, upload-time = "2025-05-07T22:47:40.376Z" },
|
|
@@ -404,7 +404,7 @@ wheels = [
|
|
|
404
404
|
[[package]]
|
|
405
405
|
name = "pluggy"
|
|
406
406
|
version = "1.6.0"
|
|
407
|
-
source = { registry = "https://pypi.org/simple
|
|
407
|
+
source = { registry = "https://pypi.org/simple" }
|
|
408
408
|
sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" }
|
|
409
409
|
wheels = [
|
|
410
410
|
{ url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" },
|
|
@@ -413,7 +413,7 @@ wheels = [
|
|
|
413
413
|
[[package]]
|
|
414
414
|
name = "pre-commit"
|
|
415
415
|
version = "4.2.0"
|
|
416
|
-
source = { registry = "https://pypi.org/simple
|
|
416
|
+
source = { registry = "https://pypi.org/simple" }
|
|
417
417
|
dependencies = [
|
|
418
418
|
{ name = "cfgv" },
|
|
419
419
|
{ name = "identify" },
|
|
@@ -429,7 +429,7 @@ wheels = [
|
|
|
429
429
|
[[package]]
|
|
430
430
|
name = "py-cpuinfo"
|
|
431
431
|
version = "9.0.0"
|
|
432
|
-
source = { registry = "https://pypi.org/simple
|
|
432
|
+
source = { registry = "https://pypi.org/simple" }
|
|
433
433
|
sdist = { url = "https://files.pythonhosted.org/packages/37/a8/d832f7293ebb21690860d2e01d8115e5ff6f2ae8bbdc953f0eb0fa4bd2c7/py-cpuinfo-9.0.0.tar.gz", hash = "sha256:3cdbbf3fac90dc6f118bfd64384f309edeadd902d7c8fb17f02ffa1fc3f49690", size = 104716, upload-time = "2022-10-25T20:38:06.303Z" }
|
|
434
434
|
wheels = [
|
|
435
435
|
{ url = "https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl", hash = "sha256:859625bc251f64e21f077d099d4162689c762b5d6a4c3c97553d56241c9674d5", size = 22335, upload-time = "2022-10-25T20:38:27.636Z" },
|
|
@@ -438,7 +438,7 @@ wheels = [
|
|
|
438
438
|
[[package]]
|
|
439
439
|
name = "pycparser"
|
|
440
440
|
version = "2.22"
|
|
441
|
-
source = { registry = "https://pypi.org/simple
|
|
441
|
+
source = { registry = "https://pypi.org/simple" }
|
|
442
442
|
sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736, upload-time = "2024-03-30T13:22:22.564Z" }
|
|
443
443
|
wheels = [
|
|
444
444
|
{ url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552, upload-time = "2024-03-30T13:22:20.476Z" },
|
|
@@ -447,7 +447,7 @@ wheels = [
|
|
|
447
447
|
[[package]]
|
|
448
448
|
name = "pydantic"
|
|
449
449
|
version = "2.11.7"
|
|
450
|
-
source = { registry = "https://pypi.org/simple
|
|
450
|
+
source = { registry = "https://pypi.org/simple" }
|
|
451
451
|
dependencies = [
|
|
452
452
|
{ name = "annotated-types" },
|
|
453
453
|
{ name = "pydantic-core" },
|
|
@@ -462,7 +462,7 @@ wheels = [
|
|
|
462
462
|
[[package]]
|
|
463
463
|
name = "pydantic-core"
|
|
464
464
|
version = "2.33.2"
|
|
465
|
-
source = { registry = "https://pypi.org/simple
|
|
465
|
+
source = { registry = "https://pypi.org/simple" }
|
|
466
466
|
dependencies = [
|
|
467
467
|
{ name = "typing-extensions" },
|
|
468
468
|
]
|
|
@@ -490,7 +490,7 @@ wheels = [
|
|
|
490
490
|
[[package]]
|
|
491
491
|
name = "pygments"
|
|
492
492
|
version = "2.19.2"
|
|
493
|
-
source = { registry = "https://pypi.org/simple
|
|
493
|
+
source = { registry = "https://pypi.org/simple" }
|
|
494
494
|
sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload-time = "2025-06-21T13:39:12.283Z" }
|
|
495
495
|
wheels = [
|
|
496
496
|
{ url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" },
|
|
@@ -499,7 +499,7 @@ wheels = [
|
|
|
499
499
|
[[package]]
|
|
500
500
|
name = "pytest"
|
|
501
501
|
version = "8.4.1"
|
|
502
|
-
source = { registry = "https://pypi.org/simple
|
|
502
|
+
source = { registry = "https://pypi.org/simple" }
|
|
503
503
|
dependencies = [
|
|
504
504
|
{ name = "colorama", marker = "sys_platform == 'win32'" },
|
|
505
505
|
{ name = "iniconfig" },
|
|
@@ -515,7 +515,7 @@ wheels = [
|
|
|
515
515
|
[[package]]
|
|
516
516
|
name = "pytest-asyncio"
|
|
517
517
|
version = "1.0.0"
|
|
518
|
-
source = { registry = "https://pypi.org/simple
|
|
518
|
+
source = { registry = "https://pypi.org/simple" }
|
|
519
519
|
dependencies = [
|
|
520
520
|
{ name = "pytest" },
|
|
521
521
|
]
|
|
@@ -527,7 +527,7 @@ wheels = [
|
|
|
527
527
|
[[package]]
|
|
528
528
|
name = "pytest-benchmark"
|
|
529
529
|
version = "5.1.0"
|
|
530
|
-
source = { registry = "https://pypi.org/simple
|
|
530
|
+
source = { registry = "https://pypi.org/simple" }
|
|
531
531
|
dependencies = [
|
|
532
532
|
{ name = "py-cpuinfo" },
|
|
533
533
|
{ name = "pytest" },
|
|
@@ -540,7 +540,7 @@ wheels = [
|
|
|
540
540
|
[[package]]
|
|
541
541
|
name = "pytest-cov"
|
|
542
542
|
version = "6.2.1"
|
|
543
|
-
source = { registry = "https://pypi.org/simple
|
|
543
|
+
source = { registry = "https://pypi.org/simple" }
|
|
544
544
|
dependencies = [
|
|
545
545
|
{ name = "coverage" },
|
|
546
546
|
{ name = "pluggy" },
|
|
@@ -554,7 +554,7 @@ wheels = [
|
|
|
554
554
|
[[package]]
|
|
555
555
|
name = "pytest-mock"
|
|
556
556
|
version = "3.14.1"
|
|
557
|
-
source = { registry = "https://pypi.org/simple
|
|
557
|
+
source = { registry = "https://pypi.org/simple" }
|
|
558
558
|
dependencies = [
|
|
559
559
|
{ name = "pytest" },
|
|
560
560
|
]
|
|
@@ -566,7 +566,7 @@ wheels = [
|
|
|
566
566
|
[[package]]
|
|
567
567
|
name = "pytest-timeout"
|
|
568
568
|
version = "2.4.0"
|
|
569
|
-
source = { registry = "https://pypi.org/simple
|
|
569
|
+
source = { registry = "https://pypi.org/simple" }
|
|
570
570
|
dependencies = [
|
|
571
571
|
{ name = "pytest" },
|
|
572
572
|
]
|
|
@@ -578,7 +578,7 @@ wheels = [
|
|
|
578
578
|
[[package]]
|
|
579
579
|
name = "pytest-xdist"
|
|
580
580
|
version = "3.8.0"
|
|
581
|
-
source = { registry = "https://pypi.org/simple
|
|
581
|
+
source = { registry = "https://pypi.org/simple" }
|
|
582
582
|
dependencies = [
|
|
583
583
|
{ name = "execnet" },
|
|
584
584
|
{ name = "pytest" },
|
|
@@ -591,7 +591,7 @@ wheels = [
|
|
|
591
591
|
[[package]]
|
|
592
592
|
name = "pywin32-ctypes"
|
|
593
593
|
version = "0.2.3"
|
|
594
|
-
source = { registry = "https://pypi.org/simple
|
|
594
|
+
source = { registry = "https://pypi.org/simple" }
|
|
595
595
|
sdist = { url = "https://files.pythonhosted.org/packages/85/9f/01a1a99704853cb63f253eea009390c88e7131c67e66a0a02099a8c917cb/pywin32-ctypes-0.2.3.tar.gz", hash = "sha256:d162dc04946d704503b2edc4d55f3dba5c1d539ead017afa00142c38b9885755", size = 29471, upload-time = "2024-08-14T10:15:34.626Z" }
|
|
596
596
|
wheels = [
|
|
597
597
|
{ url = "https://files.pythonhosted.org/packages/de/3d/8161f7711c017e01ac9f008dfddd9410dff3674334c233bde66e7ba65bbf/pywin32_ctypes-0.2.3-py3-none-any.whl", hash = "sha256:8a1513379d709975552d202d942d9837758905c8d01eb82b8bcc30918929e7b8", size = 30756, upload-time = "2024-08-14T10:15:33.187Z" },
|
|
@@ -600,7 +600,7 @@ wheels = [
|
|
|
600
600
|
[[package]]
|
|
601
601
|
name = "pyyaml"
|
|
602
602
|
version = "6.0.2"
|
|
603
|
-
source = { registry = "https://pypi.org/simple
|
|
603
|
+
source = { registry = "https://pypi.org/simple" }
|
|
604
604
|
sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631, upload-time = "2024-08-06T20:33:50.674Z" }
|
|
605
605
|
wheels = [
|
|
606
606
|
{ url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309, upload-time = "2024-08-06T20:32:43.4Z" },
|
|
@@ -617,7 +617,7 @@ wheels = [
|
|
|
617
617
|
[[package]]
|
|
618
618
|
name = "pyyaml-ft"
|
|
619
619
|
version = "8.0.0"
|
|
620
|
-
source = { registry = "https://pypi.org/simple
|
|
620
|
+
source = { registry = "https://pypi.org/simple" }
|
|
621
621
|
sdist = { url = "https://files.pythonhosted.org/packages/5e/eb/5a0d575de784f9a1f94e2b1288c6886f13f34185e13117ed530f32b6f8a8/pyyaml_ft-8.0.0.tar.gz", hash = "sha256:0c947dce03954c7b5d38869ed4878b2e6ff1d44b08a0d84dc83fdad205ae39ab", size = 141057, upload-time = "2025-06-10T15:32:15.613Z" }
|
|
622
622
|
wheels = [
|
|
623
623
|
{ url = "https://files.pythonhosted.org/packages/68/ba/a067369fe61a2e57fb38732562927d5bae088c73cb9bb5438736a9555b29/pyyaml_ft-8.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8c1306282bc958bfda31237f900eb52c9bedf9b93a11f82e1aab004c9a5657a6", size = 187027, upload-time = "2025-06-10T15:31:48.722Z" },
|
|
@@ -641,7 +641,7 @@ wheels = [
|
|
|
641
641
|
[[package]]
|
|
642
642
|
name = "rich"
|
|
643
643
|
version = "14.0.0"
|
|
644
|
-
source = { registry = "https://pypi.org/simple
|
|
644
|
+
source = { registry = "https://pypi.org/simple" }
|
|
645
645
|
dependencies = [
|
|
646
646
|
{ name = "markdown-it-py" },
|
|
647
647
|
{ name = "pygments" },
|
|
@@ -654,7 +654,7 @@ wheels = [
|
|
|
654
654
|
[[package]]
|
|
655
655
|
name = "secretstorage"
|
|
656
656
|
version = "3.3.3"
|
|
657
|
-
source = { registry = "https://pypi.org/simple
|
|
657
|
+
source = { registry = "https://pypi.org/simple" }
|
|
658
658
|
dependencies = [
|
|
659
659
|
{ name = "cryptography" },
|
|
660
660
|
{ name = "jeepney" },
|
|
@@ -667,7 +667,7 @@ wheels = [
|
|
|
667
667
|
[[package]]
|
|
668
668
|
name = "shellingham"
|
|
669
669
|
version = "1.5.4"
|
|
670
|
-
source = { registry = "https://pypi.org/simple
|
|
670
|
+
source = { registry = "https://pypi.org/simple" }
|
|
671
671
|
sdist = { url = "https://files.pythonhosted.org/packages/58/15/8b3609fd3830ef7b27b655beb4b4e9c62313a4e8da8c676e142cc210d58e/shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de", size = 10310, upload-time = "2023-10-24T04:13:40.426Z" }
|
|
672
672
|
wheels = [
|
|
673
673
|
{ url = "https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686", size = 9755, upload-time = "2023-10-24T04:13:38.866Z" },
|
|
@@ -676,7 +676,7 @@ wheels = [
|
|
|
676
676
|
[[package]]
|
|
677
677
|
name = "tomli-w"
|
|
678
678
|
version = "1.2.0"
|
|
679
|
-
source = { registry = "https://pypi.org/simple
|
|
679
|
+
source = { registry = "https://pypi.org/simple" }
|
|
680
680
|
sdist = { url = "https://files.pythonhosted.org/packages/19/75/241269d1da26b624c0d5e110e8149093c759b7a286138f4efd61a60e75fe/tomli_w-1.2.0.tar.gz", hash = "sha256:2dd14fac5a47c27be9cd4c976af5a12d87fb1f0b4512f81d69cce3b35ae25021", size = 7184, upload-time = "2025-01-15T12:07:24.262Z" }
|
|
681
681
|
wheels = [
|
|
682
682
|
{ url = "https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl", hash = "sha256:188306098d013b691fcadc011abd66727d3c414c571bb01b1a174ba8c983cf90", size = 6675, upload-time = "2025-01-15T12:07:22.074Z" },
|
|
@@ -685,7 +685,7 @@ wheels = [
|
|
|
685
685
|
[[package]]
|
|
686
686
|
name = "trove-classifiers"
|
|
687
687
|
version = "2025.5.9.12"
|
|
688
|
-
source = { registry = "https://pypi.org/simple
|
|
688
|
+
source = { registry = "https://pypi.org/simple" }
|
|
689
689
|
sdist = { url = "https://files.pythonhosted.org/packages/38/04/1cd43f72c241fedcf0d9a18d0783953ee301eac9e5d9db1df0f0f089d9af/trove_classifiers-2025.5.9.12.tar.gz", hash = "sha256:7ca7c8a7a76e2cd314468c677c69d12cc2357711fcab4a60f87994c1589e5cb5", size = 16940, upload-time = "2025-05-09T12:04:48.829Z" }
|
|
690
690
|
wheels = [
|
|
691
691
|
{ url = "https://files.pythonhosted.org/packages/92/ef/c6deb083748be3bcad6f471b6ae983950c161890bf5ae1b2af80cc56c530/trove_classifiers-2025.5.9.12-py3-none-any.whl", hash = "sha256:e381c05537adac78881c8fa345fd0e9970159f4e4a04fcc42cfd3129cca640ce", size = 14119, upload-time = "2025-05-09T12:04:46.38Z" },
|
|
@@ -694,7 +694,7 @@ wheels = [
|
|
|
694
694
|
[[package]]
|
|
695
695
|
name = "typer"
|
|
696
696
|
version = "0.16.0"
|
|
697
|
-
source = { registry = "https://pypi.org/simple
|
|
697
|
+
source = { registry = "https://pypi.org/simple" }
|
|
698
698
|
dependencies = [
|
|
699
699
|
{ name = "click" },
|
|
700
700
|
{ name = "rich" },
|
|
@@ -709,7 +709,7 @@ wheels = [
|
|
|
709
709
|
[[package]]
|
|
710
710
|
name = "typing-extensions"
|
|
711
711
|
version = "4.14.1"
|
|
712
|
-
source = { registry = "https://pypi.org/simple
|
|
712
|
+
source = { registry = "https://pypi.org/simple" }
|
|
713
713
|
sdist = { url = "https://files.pythonhosted.org/packages/98/5a/da40306b885cc8c09109dc2e1abd358d5684b1425678151cdaed4731c822/typing_extensions-4.14.1.tar.gz", hash = "sha256:38b39f4aeeab64884ce9f74c94263ef78f3c22467c8724005483154c26648d36", size = 107673, upload-time = "2025-07-04T13:28:34.16Z" }
|
|
714
714
|
wheels = [
|
|
715
715
|
{ url = "https://files.pythonhosted.org/packages/b5/00/d631e67a838026495268c2f6884f3711a15a9a2a96cd244fdaea53b823fb/typing_extensions-4.14.1-py3-none-any.whl", hash = "sha256:d1e1e3b58374dc93031d6eda2420a48ea44a36c2b4766a4fdeb3710755731d76", size = 43906, upload-time = "2025-07-04T13:28:32.743Z" },
|
|
@@ -718,7 +718,7 @@ wheels = [
|
|
|
718
718
|
[[package]]
|
|
719
719
|
name = "typing-inspection"
|
|
720
720
|
version = "0.4.1"
|
|
721
|
-
source = { registry = "https://pypi.org/simple
|
|
721
|
+
source = { registry = "https://pypi.org/simple" }
|
|
722
722
|
dependencies = [
|
|
723
723
|
{ name = "typing-extensions" },
|
|
724
724
|
]
|
|
@@ -730,7 +730,7 @@ wheels = [
|
|
|
730
730
|
[[package]]
|
|
731
731
|
name = "uv"
|
|
732
732
|
version = "0.7.20"
|
|
733
|
-
source = { registry = "https://pypi.org/simple
|
|
733
|
+
source = { registry = "https://pypi.org/simple" }
|
|
734
734
|
sdist = { url = "https://files.pythonhosted.org/packages/78/97/1ff10c82d3f0b4246c3a94c09ab4b40d0f7d6dfaafb352175d169ef357e5/uv-0.7.20.tar.gz", hash = "sha256:6adf2ad333e8da133eecbdd2bdb4e8dfb6d4b2db2c3b4739b6705aa347c997ee", size = 3365382, upload-time = "2025-07-09T21:02:17.822Z" }
|
|
735
735
|
wheels = [
|
|
736
736
|
{ url = "https://files.pythonhosted.org/packages/94/dc/640875ba8ab0b73401cf0cc72c96a568a817a55c71e939f3a93c5911d0ba/uv-0.7.20-py3-none-linux_armv6l.whl", hash = "sha256:9e59b3b0c62255ac87f3fd5b0c58133187983cac57ab86e127cde1b8a2ee32ff", size = 17685309, upload-time = "2025-07-09T21:01:33.49Z" },
|
|
@@ -755,7 +755,7 @@ wheels = [
|
|
|
755
755
|
[[package]]
|
|
756
756
|
name = "virtualenv"
|
|
757
757
|
version = "20.31.2"
|
|
758
|
-
source = { registry = "https://pypi.org/simple
|
|
758
|
+
source = { registry = "https://pypi.org/simple" }
|
|
759
759
|
dependencies = [
|
|
760
760
|
{ name = "distlib" },
|
|
761
761
|
{ name = "filelock" },
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|