micropython-stubber 1.24.0__py3-none-any.whl → 1.24.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {micropython_stubber-1.24.0.dist-info → micropython_stubber-1.24.2.dist-info}/METADATA +3 -2
- {micropython_stubber-1.24.0.dist-info → micropython_stubber-1.24.2.dist-info}/RECORD +38 -36
- mpflash/mpflash/bootloader/activate.py +1 -1
- mpflash/mpflash/flash/esp.py +1 -1
- mpflash/mpflash/flash/uf2/__init__.py +18 -2
- mpflash/mpflash/mpboard_id/add_boards.py +5 -2
- mpflash/mpflash/mpboard_id/board_id.py +7 -5
- mpflash/mpflash/mpboard_id/board_info.zip +0 -0
- mpflash/mpflash/vendor/pico-universal-flash-nuke/LICENSE.txt +21 -0
- mpflash/mpflash/vendor/pico-universal-flash-nuke/universal_flash_nuke.uf2 +0 -0
- mpflash/mpflash/vendor/readme.md +2 -0
- mpflash/poetry.lock +754 -488
- mpflash/pyproject.toml +1 -1
- stubber/__init__.py +1 -1
- stubber/board/createstubs.py +44 -38
- stubber/board/createstubs_db.py +17 -12
- stubber/board/createstubs_db_min.py +63 -63
- stubber/board/createstubs_db_mpy.mpy +0 -0
- stubber/board/createstubs_mem.py +17 -12
- stubber/board/createstubs_mem_min.py +99 -99
- stubber/board/createstubs_mem_mpy.mpy +0 -0
- stubber/board/createstubs_min.py +111 -112
- stubber/board/createstubs_mpy.mpy +0 -0
- stubber/board/modulelist.txt +27 -27
- stubber/codemod/enrich.py +4 -6
- stubber/codemod/merge_docstub.py +10 -10
- stubber/codemod/visitors/type_helpers.py +182 -0
- stubber/commands/get_docstubs_cmd.py +5 -6
- stubber/cst_transformer.py +2 -1
- stubber/merge_config.py +3 -0
- stubber/publish/merge_docstubs.py +1 -2
- stubber/publish/stubpackage.py +36 -14
- stubber/rst/lookup.py +3 -0
- stubber/rst/reader.py +8 -13
- stubber/tools/manifestfile.py +2 -1
- stubber/codemod/visitors/typevars.py +0 -200
- {micropython_stubber-1.24.0.dist-info → micropython_stubber-1.24.2.dist-info}/LICENSE +0 -0
- {micropython_stubber-1.24.0.dist-info → micropython_stubber-1.24.2.dist-info}/WHEEL +0 -0
- {micropython_stubber-1.24.0.dist-info → micropython_stubber-1.24.2.dist-info}/entry_points.txt +0 -0
mpflash/poetry.lock
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# This file is automatically @generated by Poetry 2.
|
1
|
+
# This file is automatically @generated by Poetry 2.1.1 and should not be changed by hand.
|
2
2
|
|
3
3
|
[[package]]
|
4
4
|
name = "ansicon"
|
@@ -13,17 +13,40 @@ files = [
|
|
13
13
|
{file = "ansicon-1.89.0.tar.gz", hash = "sha256:e4d039def5768a47e4afec8e89e83ec3ae5a26bf00ad851f914d1240b444d2b1"},
|
14
14
|
]
|
15
15
|
|
16
|
+
[[package]]
|
17
|
+
name = "anyio"
|
18
|
+
version = "4.8.0"
|
19
|
+
description = "High level compatibility layer for multiple asynchronous event loop implementations"
|
20
|
+
optional = false
|
21
|
+
python-versions = ">=3.9"
|
22
|
+
groups = ["main"]
|
23
|
+
files = [
|
24
|
+
{file = "anyio-4.8.0-py3-none-any.whl", hash = "sha256:b5011f270ab5eb0abf13385f851315585cc37ef330dd88e27ec3d34d651fd47a"},
|
25
|
+
{file = "anyio-4.8.0.tar.gz", hash = "sha256:1d9fe889df5212298c0c0723fa20479d1b94883a2df44bd3897aa91083316f7a"},
|
26
|
+
]
|
27
|
+
|
28
|
+
[package.dependencies]
|
29
|
+
exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""}
|
30
|
+
idna = ">=2.8"
|
31
|
+
sniffio = ">=1.1"
|
32
|
+
typing_extensions = {version = ">=4.5", markers = "python_version < \"3.13\""}
|
33
|
+
|
34
|
+
[package.extras]
|
35
|
+
doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx_rtd_theme"]
|
36
|
+
test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "trustme", "truststore (>=0.9.1) ; python_version >= \"3.10\"", "uvloop (>=0.21) ; platform_python_implementation == \"CPython\" and platform_system != \"Windows\" and python_version < \"3.14\""]
|
37
|
+
trio = ["trio (>=0.26.1)"]
|
38
|
+
|
16
39
|
[[package]]
|
17
40
|
name = "argcomplete"
|
18
|
-
version = "3.5.
|
41
|
+
version = "3.5.3"
|
19
42
|
description = "Bash tab completion for argparse"
|
20
43
|
optional = false
|
21
44
|
python-versions = ">=3.8"
|
22
45
|
groups = ["main"]
|
23
46
|
markers = "sys_platform != \"win32\""
|
24
47
|
files = [
|
25
|
-
{file = "argcomplete-3.5.
|
26
|
-
{file = "argcomplete-3.5.
|
48
|
+
{file = "argcomplete-3.5.3-py3-none-any.whl", hash = "sha256:2ab2c4a215c59fd6caaff41a869480a23e8f6a5f910b266c1808037f4e375b61"},
|
49
|
+
{file = "argcomplete-3.5.3.tar.gz", hash = "sha256:c12bf50eded8aebb298c7b7da7a5ff3ee24dffd9f5281867dfe1424b58c55392"},
|
27
50
|
]
|
28
51
|
|
29
52
|
[package.extras]
|
@@ -43,23 +66,23 @@ files = [
|
|
43
66
|
|
44
67
|
[[package]]
|
45
68
|
name = "attrs"
|
46
|
-
version = "
|
69
|
+
version = "25.1.0"
|
47
70
|
description = "Classes Without Boilerplate"
|
48
71
|
optional = false
|
49
72
|
python-versions = ">=3.8"
|
50
73
|
groups = ["main"]
|
51
74
|
files = [
|
52
|
-
{file = "attrs-
|
53
|
-
{file = "attrs-
|
75
|
+
{file = "attrs-25.1.0-py3-none-any.whl", hash = "sha256:c75a69e28a550a7e93789579c22aa26b0f5b83b75dc4e08fe092980051e1090a"},
|
76
|
+
{file = "attrs-25.1.0.tar.gz", hash = "sha256:1c97078a80c814273a76b2a298a932eb681c87415c11dee0a6921de7f1b02c3e"},
|
54
77
|
]
|
55
78
|
|
56
79
|
[package.extras]
|
57
|
-
benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
|
58
|
-
cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
|
59
|
-
dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit-uv", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
|
80
|
+
benchmark = ["cloudpickle ; platform_python_implementation == \"CPython\"", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pytest-xdist[psutil]"]
|
81
|
+
cov = ["cloudpickle ; platform_python_implementation == \"CPython\"", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pytest-xdist[psutil]"]
|
82
|
+
dev = ["cloudpickle ; platform_python_implementation == \"CPython\"", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pre-commit-uv", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pytest-xdist[psutil]"]
|
60
83
|
docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"]
|
61
|
-
tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
|
62
|
-
tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"]
|
84
|
+
tests = ["cloudpickle ; platform_python_implementation == \"CPython\"", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pytest-xdist[psutil]"]
|
85
|
+
tests-mypy = ["mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\""]
|
63
86
|
|
64
87
|
[[package]]
|
65
88
|
name = "backports-tarfile"
|
@@ -80,18 +103,19 @@ testing = ["jaraco.test", "pytest (!=8.0.*)", "pytest (>=6,!=8.1.*)", "pytest-ch
|
|
80
103
|
|
81
104
|
[[package]]
|
82
105
|
name = "beautifulsoup4"
|
83
|
-
version = "4.
|
106
|
+
version = "4.13.3"
|
84
107
|
description = "Screen-scraping library"
|
85
108
|
optional = false
|
86
|
-
python-versions = ">=3.
|
109
|
+
python-versions = ">=3.7.0"
|
87
110
|
groups = ["main"]
|
88
111
|
files = [
|
89
|
-
{file = "beautifulsoup4-4.
|
90
|
-
{file = "beautifulsoup4-4.
|
112
|
+
{file = "beautifulsoup4-4.13.3-py3-none-any.whl", hash = "sha256:99045d7d3f08f91f0d656bc9b7efbae189426cd913d830294a15eefa0ea4df16"},
|
113
|
+
{file = "beautifulsoup4-4.13.3.tar.gz", hash = "sha256:1bd32405dacc920b42b83ba01644747ed77456a65760e285fbc47633ceddaf8b"},
|
91
114
|
]
|
92
115
|
|
93
116
|
[package.dependencies]
|
94
117
|
soupsieve = ">1.2"
|
118
|
+
typing-extensions = ">=4.0.0"
|
95
119
|
|
96
120
|
[package.extras]
|
97
121
|
cchardet = ["cchardet"]
|
@@ -102,182 +126,182 @@ lxml = ["lxml"]
|
|
102
126
|
|
103
127
|
[[package]]
|
104
128
|
name = "bincopy"
|
105
|
-
version = "20.
|
129
|
+
version = "20.1.0"
|
106
130
|
description = "Mangling of various file formats that conveys binary information (Motorola S-Record, Intel HEX and binary files)."
|
107
131
|
optional = false
|
108
|
-
python-versions = ">=3.
|
132
|
+
python-versions = ">=3.9"
|
109
133
|
groups = ["main"]
|
110
134
|
files = [
|
111
|
-
{file = "bincopy-20.
|
112
|
-
{file = "bincopy-20.
|
135
|
+
{file = "bincopy-20.1.0-py3-none-any.whl", hash = "sha256:76a2b53253f1f802d16932d9aceff07142298cf5ddf251f77e8ecabff87c9de2"},
|
136
|
+
{file = "bincopy-20.1.0.tar.gz", hash = "sha256:d8a4e8cb82edafbbe367415337d1926c7d8c455617e43bd4b145653772b9b965"},
|
113
137
|
]
|
114
138
|
|
115
139
|
[package.dependencies]
|
116
|
-
|
140
|
+
argparse_addons = ">=0.4.0"
|
117
141
|
humanfriendly = "*"
|
118
142
|
pyelftools = "*"
|
119
143
|
|
120
144
|
[[package]]
|
121
145
|
name = "bitarray"
|
122
|
-
version = "
|
146
|
+
version = "3.0.0"
|
123
147
|
description = "efficient arrays of booleans -- C extension"
|
124
148
|
optional = false
|
125
149
|
python-versions = "*"
|
126
150
|
groups = ["main"]
|
127
151
|
files = [
|
128
|
-
{file = "bitarray-
|
129
|
-
{file = "bitarray-
|
130
|
-
{file = "bitarray-
|
131
|
-
{file = "bitarray-
|
132
|
-
{file = "bitarray-
|
133
|
-
{file = "bitarray-
|
134
|
-
{file = "bitarray-
|
135
|
-
{file = "bitarray-
|
136
|
-
{file = "bitarray-
|
137
|
-
{file = "bitarray-
|
138
|
-
{file = "bitarray-
|
139
|
-
{file = "bitarray-
|
140
|
-
{file = "bitarray-
|
141
|
-
{file = "bitarray-
|
142
|
-
{file = "bitarray-
|
143
|
-
{file = "bitarray-
|
144
|
-
{file = "bitarray-
|
145
|
-
{file = "bitarray-
|
146
|
-
{file = "bitarray-
|
147
|
-
{file = "bitarray-
|
148
|
-
{file = "bitarray-
|
149
|
-
{file = "bitarray-
|
150
|
-
{file = "bitarray-
|
151
|
-
{file = "bitarray-
|
152
|
-
{file = "bitarray-
|
153
|
-
{file = "bitarray-
|
154
|
-
{file = "bitarray-
|
155
|
-
{file = "bitarray-
|
156
|
-
{file = "bitarray-
|
157
|
-
{file = "bitarray-
|
158
|
-
{file = "bitarray-
|
159
|
-
{file = "bitarray-
|
160
|
-
{file = "bitarray-
|
161
|
-
{file = "bitarray-
|
162
|
-
{file = "bitarray-
|
163
|
-
{file = "bitarray-
|
164
|
-
{file = "bitarray-
|
165
|
-
{file = "bitarray-
|
166
|
-
{file = "bitarray-
|
167
|
-
{file = "bitarray-
|
168
|
-
{file = "bitarray-
|
169
|
-
{file = "bitarray-
|
170
|
-
{file = "bitarray-
|
171
|
-
{file = "bitarray-
|
172
|
-
{file = "bitarray-
|
173
|
-
{file = "bitarray-
|
174
|
-
{file = "bitarray-
|
175
|
-
{file = "bitarray-
|
176
|
-
{file = "bitarray-
|
177
|
-
{file = "bitarray-
|
178
|
-
{file = "bitarray-
|
179
|
-
{file = "bitarray-
|
180
|
-
{file = "bitarray-
|
181
|
-
{file = "bitarray-
|
182
|
-
{file = "bitarray-
|
183
|
-
{file = "bitarray-
|
184
|
-
{file = "bitarray-
|
185
|
-
{file = "bitarray-
|
186
|
-
{file = "bitarray-
|
187
|
-
{file = "bitarray-
|
188
|
-
{file = "bitarray-
|
189
|
-
{file = "bitarray-
|
190
|
-
{file = "bitarray-
|
191
|
-
{file = "bitarray-
|
192
|
-
{file = "bitarray-
|
193
|
-
{file = "bitarray-
|
194
|
-
{file = "bitarray-
|
195
|
-
{file = "bitarray-
|
196
|
-
{file = "bitarray-
|
197
|
-
{file = "bitarray-
|
198
|
-
{file = "bitarray-
|
199
|
-
{file = "bitarray-
|
200
|
-
{file = "bitarray-
|
201
|
-
{file = "bitarray-
|
202
|
-
{file = "bitarray-
|
203
|
-
{file = "bitarray-
|
204
|
-
{file = "bitarray-
|
205
|
-
{file = "bitarray-
|
206
|
-
{file = "bitarray-
|
207
|
-
{file = "bitarray-
|
208
|
-
{file = "bitarray-
|
209
|
-
{file = "bitarray-
|
210
|
-
{file = "bitarray-
|
211
|
-
{file = "bitarray-
|
212
|
-
{file = "bitarray-
|
213
|
-
{file = "bitarray-
|
214
|
-
{file = "bitarray-
|
215
|
-
{file = "bitarray-
|
216
|
-
{file = "bitarray-
|
217
|
-
{file = "bitarray-
|
218
|
-
{file = "bitarray-
|
219
|
-
{file = "bitarray-
|
220
|
-
{file = "bitarray-
|
221
|
-
{file = "bitarray-
|
222
|
-
{file = "bitarray-
|
223
|
-
{file = "bitarray-
|
224
|
-
{file = "bitarray-
|
225
|
-
{file = "bitarray-
|
226
|
-
{file = "bitarray-
|
227
|
-
{file = "bitarray-
|
228
|
-
{file = "bitarray-
|
229
|
-
{file = "bitarray-
|
230
|
-
{file = "bitarray-
|
231
|
-
{file = "bitarray-
|
232
|
-
{file = "bitarray-
|
233
|
-
{file = "bitarray-
|
234
|
-
{file = "bitarray-
|
235
|
-
{file = "bitarray-
|
236
|
-
{file = "bitarray-
|
237
|
-
{file = "bitarray-
|
238
|
-
{file = "bitarray-
|
239
|
-
{file = "bitarray-
|
240
|
-
{file = "bitarray-
|
241
|
-
{file = "bitarray-
|
242
|
-
{file = "bitarray-
|
243
|
-
{file = "bitarray-
|
244
|
-
{file = "bitarray-
|
245
|
-
{file = "bitarray-
|
246
|
-
{file = "bitarray-
|
247
|
-
{file = "bitarray-
|
248
|
-
{file = "bitarray-
|
249
|
-
{file = "bitarray-
|
250
|
-
{file = "bitarray-
|
251
|
-
{file = "bitarray-
|
252
|
-
{file = "bitarray-
|
253
|
-
{file = "bitarray-
|
254
|
-
{file = "bitarray-
|
255
|
-
{file = "bitarray-
|
256
|
-
{file = "bitarray-
|
257
|
-
{file = "bitarray-
|
258
|
-
{file = "bitarray-
|
259
|
-
{file = "bitarray-
|
260
|
-
{file = "bitarray-
|
261
|
-
{file = "bitarray-
|
262
|
-
{file = "bitarray-
|
263
|
-
{file = "bitarray-
|
264
|
-
{file = "bitarray-
|
152
|
+
{file = "bitarray-3.0.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5ddbf71a97ad1d6252e6e93d2d703b624d0a5b77c153b12f9ea87d83e1250e0c"},
|
153
|
+
{file = "bitarray-3.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e0e7f24a0b01e6e6a0191c50b06ca8edfdec1988d9d2b264d669d2487f4f4680"},
|
154
|
+
{file = "bitarray-3.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:150b7b29c36d9f1a24779aea723fdfc73d1c1c161dc0ea14990da27d4e947092"},
|
155
|
+
{file = "bitarray-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8330912be6cb8e2fbfe8eb69f82dee139d605730cadf8d50882103af9ac83bb4"},
|
156
|
+
{file = "bitarray-3.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e56ba8be5f17dee0ffa6d6ce85251e062ded2faa3cbd2558659c671e6c3bf96d"},
|
157
|
+
{file = "bitarray-3.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ffd94b4803811c738e504a4b499fb2f848b2f7412d71e6b517508217c1d7929d"},
|
158
|
+
{file = "bitarray-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0255bd05ec7165e512c115423a5255a3f301417973d20a80fc5bfc3f3640bcb"},
|
159
|
+
{file = "bitarray-3.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fe606e728842389943a939258809dc5db2de831b1d2e0118515059e87f7bbc1a"},
|
160
|
+
{file = "bitarray-3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e89ea59a3ed86a6eb150d016ed28b1bedf892802d0ed32b5659d3199440f3ced"},
|
161
|
+
{file = "bitarray-3.0.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:cf0cc2e91dd38122dec2e6541efa99aafb0a62e118179218181eff720b4b8153"},
|
162
|
+
{file = "bitarray-3.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:2d9fe3ee51afeb909b68f97e14c6539ace3f4faa99b21012e610bbe7315c388d"},
|
163
|
+
{file = "bitarray-3.0.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:37be5482b9df3105bad00fdf7dc65244e449b130867c3879c9db1db7d72e508b"},
|
164
|
+
{file = "bitarray-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0027b8f3bb2bba914c79115e96a59b9924aafa1a578223a7c4f0a7242d349842"},
|
165
|
+
{file = "bitarray-3.0.0-cp310-cp310-win32.whl", hash = "sha256:628f93e9c2c23930bd1cfe21c634d6c84ec30f45f23e69aefe1fcd262186d7bb"},
|
166
|
+
{file = "bitarray-3.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:0b655c3110e315219e266b2732609fddb0857bc69593de29f3c2ba74b7d3f51a"},
|
167
|
+
{file = "bitarray-3.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:44c3e78b60070389b824d5a654afa1c893df723153c81904088d4922c3cfb6ac"},
|
168
|
+
{file = "bitarray-3.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:545d36332de81e4742a845a80df89530ff193213a50b4cbef937ed5a44c0e5e5"},
|
169
|
+
{file = "bitarray-3.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8a9eb510cde3fa78c2e302bece510bf5ed494ec40e6b082dec753d6e22d5d1b1"},
|
170
|
+
{file = "bitarray-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9e3727ab63dfb6bde00b281934e2212bb7529ea3006c0031a556a84d2268bea5"},
|
171
|
+
{file = "bitarray-3.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2055206ed653bee0b56628f6a4d248d53e5660228d355bbec0014bdfa27050ae"},
|
172
|
+
{file = "bitarray-3.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:147542299f458bdb177f798726e5f7d39ab8491de4182c3c6d9885ed275a3c2b"},
|
173
|
+
{file = "bitarray-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3f761184b93092077c7f6b7dad7bd4e671c1620404a76620da7872ceb576a94"},
|
174
|
+
{file = "bitarray-3.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e008b7b4ce6c7f7a54b250c45c28d4243cc2a3bbfd5298fa7dac92afda229842"},
|
175
|
+
{file = "bitarray-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dfea514e665af278b2e1d4deb542de1cd4f77413bee83dd15ae16175976ea8d5"},
|
176
|
+
{file = "bitarray-3.0.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:66d6134b7bb737b88f1d16478ad0927c571387f6054f4afa5557825a4c1b78e2"},
|
177
|
+
{file = "bitarray-3.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:3cd565253889940b4ec4768d24f101d9fe111cad4606fdb203ea16f9797cf9ed"},
|
178
|
+
{file = "bitarray-3.0.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4800c91a14656789d2e67d9513359e23e8a534c8ee1482bb9b517a4cfc845200"},
|
179
|
+
{file = "bitarray-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c2945e0390d1329c585c584c6b6d78be017d9c6a1288f9c92006fe907f69cc28"},
|
180
|
+
{file = "bitarray-3.0.0-cp311-cp311-win32.whl", hash = "sha256:c23286abba0cb509733c6ce8f4013cd951672c332b2e184dbefbd7331cd234c8"},
|
181
|
+
{file = "bitarray-3.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:ca79f02a98cbda1472449d440592a2fe2ad96fe55515a0447fa8864a38017cf8"},
|
182
|
+
{file = "bitarray-3.0.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:184972c96e1c7e691be60c3792ca1a51dd22b7f25d96ebea502fe3c9b554f25d"},
|
183
|
+
{file = "bitarray-3.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:787db8da5e9e29be712f7a6bce153c7bc8697ccc2c38633e347bb9c82475d5c9"},
|
184
|
+
{file = "bitarray-3.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2da91ab3633c66999c2a352f0ca9ae064f553e5fc0eca231d28e7e305b83e942"},
|
185
|
+
{file = "bitarray-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7edb83089acbf2c86c8002b96599071931dc4ea5e1513e08306f6f7df879a48b"},
|
186
|
+
{file = "bitarray-3.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:996d1b83eb904589f40974538223eaed1ab0f62be8a5105c280b9bd849e685c4"},
|
187
|
+
{file = "bitarray-3.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4817d73d995bd2b977d9cde6050be8d407791cf1f84c8047fa0bea88c1b815bc"},
|
188
|
+
{file = "bitarray-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d47bc4ff9b0e1624d613563c6fa7b80aebe7863c56c3df5ab238bb7134e8755"},
|
189
|
+
{file = "bitarray-3.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aca0a9cd376beaccd9f504961de83e776dd209c2de5a4c78dc87a78edf61839b"},
|
190
|
+
{file = "bitarray-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:572a61fba7e3a710a8324771322fba8488d134034d349dcd036a7aef74723a80"},
|
191
|
+
{file = "bitarray-3.0.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:a817ad70c1aff217530576b4f037dd9b539eb2926603354fcac605d824082ad1"},
|
192
|
+
{file = "bitarray-3.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:2ac67b658fa5426503e9581a3fb44a26a3b346c1abd17105735f07db572195b3"},
|
193
|
+
{file = "bitarray-3.0.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:12f19ede03e685c5c588ab5ed63167999295ffab5e1126c5fe97d12c0718c18f"},
|
194
|
+
{file = "bitarray-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fcef31b062f756ba7eebcd7890c5d5de84b9d64ee877325257bcc9782288564a"},
|
195
|
+
{file = "bitarray-3.0.0-cp312-cp312-win32.whl", hash = "sha256:656db7bdf1d81ec3b57b3cad7ec7276765964bcfd0eb81c5d1331f385298169c"},
|
196
|
+
{file = "bitarray-3.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:f785af6b7cb07a9b1e5db0dea9ef9e3e8bb3d74874a0a61303eab9c16acc1999"},
|
197
|
+
{file = "bitarray-3.0.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7cb885c043000924554fe2124d13084c8fdae03aec52c4086915cd4cb87fe8be"},
|
198
|
+
{file = "bitarray-3.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7814c9924a0b30ecd401f02f082d8697fc5a5be3f8d407efa6e34531ff3c306a"},
|
199
|
+
{file = "bitarray-3.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bcf524a087b143ba736aebbb054bb399d49e77cf7c04ed24c728e411adc82bfa"},
|
200
|
+
{file = "bitarray-3.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1d5abf1d6d910599ac16afdd9a0ed3e24f3b46af57f3070cf2792f236f36e0b"},
|
201
|
+
{file = "bitarray-3.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9929051feeaf8d948cc0b1c9ce57748079a941a1a15c89f6014edf18adaade84"},
|
202
|
+
{file = "bitarray-3.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96cf0898f8060b2d3ae491762ae871b071212ded97ff9e1e3a5229e9fefe544c"},
|
203
|
+
{file = "bitarray-3.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab37da66a8736ad5a75a58034180e92c41e864da0152b84e71fcc253a2f69cd4"},
|
204
|
+
{file = "bitarray-3.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:beeb79e476d19b91fd6a3439853e4e5ba1b3b475920fa40d62bde719c8af786f"},
|
205
|
+
{file = "bitarray-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f75fc0198c955d840b836059bd43e0993edbf119923029ca60c4fc017cefa54a"},
|
206
|
+
{file = "bitarray-3.0.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f12cc7c7638074918cdcc7491aff897df921b092ffd877227892d2686e98f876"},
|
207
|
+
{file = "bitarray-3.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:dbe1084935b942fab206e609fa1ed3f46ad1f2612fb4833e177e9b2a5e006c96"},
|
208
|
+
{file = "bitarray-3.0.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:ac06dd72ee1e1b6e312504d06f75220b5894af1fb58f0c20643698f5122aea76"},
|
209
|
+
{file = "bitarray-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:00f9a88c56e373009ac3c73c55205cfbd9683fbd247e2f9a64bae3da78795252"},
|
210
|
+
{file = "bitarray-3.0.0-cp313-cp313-win32.whl", hash = "sha256:9c6e52005e91803eb4e08c0a08a481fb55ddce97f926bae1f6fa61b3396b5b61"},
|
211
|
+
{file = "bitarray-3.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:cb98d5b6eac4b2cf2a5a69f60a9c499844b8bea207059e9fc45c752436e6bb49"},
|
212
|
+
{file = "bitarray-3.0.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:eb27c01b747649afd7e1c342961680893df6d8d81f832a6f04d8c8e03a8a54cc"},
|
213
|
+
{file = "bitarray-3.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4683bff52f5a0fd523fb5d3138161ef87611e63968e1fcb6cf4b0c6a86970fe0"},
|
214
|
+
{file = "bitarray-3.0.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb7302dbcfcb676f0b66f15891f091d0233c4fc23e1d4b9dc9b9e958156e347f"},
|
215
|
+
{file = "bitarray-3.0.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:153d7c416a70951dcfa73487af05d2f49c632e95602f1620cd9a651fa2033695"},
|
216
|
+
{file = "bitarray-3.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:251cd5bd47f542893b2b61860eded54f34920ea47fd5bff038d85e7a2f7ae99b"},
|
217
|
+
{file = "bitarray-3.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fa4b4d9fa90124b33b251ef74e44e737021f253dc7a9174e1b39f097451f7ca"},
|
218
|
+
{file = "bitarray-3.0.0-cp36-cp36m-musllinux_1_2_aarch64.whl", hash = "sha256:18abdce7ab5d2104437c39670821cba0b32fdb9b2da9e6d17a4ff295362bd9dc"},
|
219
|
+
{file = "bitarray-3.0.0-cp36-cp36m-musllinux_1_2_i686.whl", hash = "sha256:2855cc01ee370f7e6e3ec97eebe44b1453c83fb35080313145e2c8c3c5243afb"},
|
220
|
+
{file = "bitarray-3.0.0-cp36-cp36m-musllinux_1_2_ppc64le.whl", hash = "sha256:0cecaf2981c9cd2054547f651537b4f4939f9fe225d3fc2b77324b597c124e40"},
|
221
|
+
{file = "bitarray-3.0.0-cp36-cp36m-musllinux_1_2_s390x.whl", hash = "sha256:22b00f65193fafb13aa644e16012c8b49e7d5cbb6bb72825105ff89aadaa01e3"},
|
222
|
+
{file = "bitarray-3.0.0-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:20f30373f0af9cb583e4122348cefde93c82865dbcbccc4997108b3d575ece84"},
|
223
|
+
{file = "bitarray-3.0.0-cp36-cp36m-win32.whl", hash = "sha256:aef404d5400d95c6ec86664df9924bde667c8865f8e33c9b7bd79823d53b3e5d"},
|
224
|
+
{file = "bitarray-3.0.0-cp36-cp36m-win_amd64.whl", hash = "sha256:ec5b0f2d13da53e0975ac15ecbe8badb463bdb0bebaa09457f4df3320421915c"},
|
225
|
+
{file = "bitarray-3.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:041c889e69c847b8a96346650e50f728b747ae176889199c49a3f31ae1de0e23"},
|
226
|
+
{file = "bitarray-3.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc83ea003dd75e9ade3291ef0585577dd5524aec0c8c99305c0aaa2a7570d6db"},
|
227
|
+
{file = "bitarray-3.0.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6c33129b49196aa7965ac0f16fcde7b6ad8614b606caf01669a0277cef1afe1d"},
|
228
|
+
{file = "bitarray-3.0.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ef5c787c8263c082a73219a69eb60a500e157a4ac69d1b8515ad836b0e71fb4"},
|
229
|
+
{file = "bitarray-3.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e15c94d79810c5ab90ddf4d943f71f14332890417be896ca253f21fa3d78d2b1"},
|
230
|
+
{file = "bitarray-3.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7cd021ada988e73d649289cee00428b75564c46d55fbdcb0e3402e504b0ae5ea"},
|
231
|
+
{file = "bitarray-3.0.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:7f1c24be7519f16a47b7e2ad1a1ef73023d34d8cbe1a3a59b185fc14baabb132"},
|
232
|
+
{file = "bitarray-3.0.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:000df24c183011b5d27c23d79970f49b6762e5bb5aacd25da9c3e9695c693222"},
|
233
|
+
{file = "bitarray-3.0.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:42bf1b222c698b467097f58b9f59dc850dfa694dde4e08237407a6a103757aa3"},
|
234
|
+
{file = "bitarray-3.0.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:648e7ce794928e8d11343b5da8ecc5b910af75a82ea1a4264d5d0a55c3785faa"},
|
235
|
+
{file = "bitarray-3.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:f536fc4d1a683025f9caef0bebeafd60384054579ffe0825bb9bd8c59f8c55b8"},
|
236
|
+
{file = "bitarray-3.0.0-cp37-cp37m-win32.whl", hash = "sha256:a754c1464e7b946b1cac7300c582c6fba7d66e535cd1dab76d998ad285ac5a37"},
|
237
|
+
{file = "bitarray-3.0.0-cp37-cp37m-win_amd64.whl", hash = "sha256:e91d46d12781a14ccb8b284566b14933de4e3b29f8bc5e1c17de7a2001ad3b5b"},
|
238
|
+
{file = "bitarray-3.0.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:904c1d5e3bd24f0c0d37a582d2461312033c91436a6a4f3bdeeceb4bea4a899d"},
|
239
|
+
{file = "bitarray-3.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:47ccf9887bd595d4a0536f2310f0dcf89e17ab83b8befa7dc8727b8017120fda"},
|
240
|
+
{file = "bitarray-3.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:71ad0139c95c9acf4fb62e203b428f9906157b15eecf3f30dc10b55919225896"},
|
241
|
+
{file = "bitarray-3.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:53e002ac1073ac70e323a7a4bfa9ab95e7e1a85c79160799e265563f342b1557"},
|
242
|
+
{file = "bitarray-3.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:acc07211a59e2f245e9a06f28fa374d094fb0e71cf5366eef52abbb826ddc81e"},
|
243
|
+
{file = "bitarray-3.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98a4070ddafabddaee70b2aa7cc6286cf73c37984169ab03af1782da2351059a"},
|
244
|
+
{file = "bitarray-3.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7d09ef06ba57bea646144c29764bf6b870fb3c5558ca098191e07b6a1d40bf7"},
|
245
|
+
{file = "bitarray-3.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce249ed981f428a8b61538ca82d3875847733d579dd40084ab8246549160f8a4"},
|
246
|
+
{file = "bitarray-3.0.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ea40e98d751ed4b255db4a88fe8fb743374183f78470b9e9305aab186bf28ede"},
|
247
|
+
{file = "bitarray-3.0.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:928b8b6dfcd015e1a81334cfdac02815da2a2407854492a80cf8a3a922b04052"},
|
248
|
+
{file = "bitarray-3.0.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:fbb645477595ce2a0fbb678d1cfd08d3b896e5d56196d40fb9e114eeab9382b3"},
|
249
|
+
{file = "bitarray-3.0.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:dc1937a0ff2671797d35243db4b596329842480d125a65e9fe964bcffaf16dfc"},
|
250
|
+
{file = "bitarray-3.0.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:a4f49ac31734fe654a68e2515c0da7f5bbdf2d52755ba09a42ac406f1f08c9d0"},
|
251
|
+
{file = "bitarray-3.0.0-cp38-cp38-win32.whl", hash = "sha256:6d2a2ce73f9897268f58857ad6893a1a6680c5a6b28f79d21c7d33285a5ae646"},
|
252
|
+
{file = "bitarray-3.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:b1047999f1797c3ea7b7c85261649249c243308dcf3632840d076d18fa72f142"},
|
253
|
+
{file = "bitarray-3.0.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:39b38a3d45dac39d528c87b700b81dfd5e8dc8e9e1a102503336310ef837c3fd"},
|
254
|
+
{file = "bitarray-3.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0e104f9399144fab6a892d379ba1bb4275e56272eb465059beef52a77b4e5ce6"},
|
255
|
+
{file = "bitarray-3.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0879f839ec8f079fa60c3255966c2e1aa7196699a234d4e5b7898fbc321901b5"},
|
256
|
+
{file = "bitarray-3.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9502c2230d59a4ace2fddfd770dad8e8b414cbd99517e7e56c55c20997c28b8d"},
|
257
|
+
{file = "bitarray-3.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:57d5ef854f8ec434f2ffd9ddcefc25a10848393fe2976e2be2c8c773cf5fef42"},
|
258
|
+
{file = "bitarray-3.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a3c36b2fcfebe15ad1c10a90c1d52a42bebe960adcbce340fef867203028fbe7"},
|
259
|
+
{file = "bitarray-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66a33a537e781eac3a352397ce6b07eedf3a8380ef4a804f8844f3f45e335544"},
|
260
|
+
{file = "bitarray-3.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aa54c7e1da8cf4be0aab941ea284ec64033ede5d6de3fd47d75e77cafe986e9d"},
|
261
|
+
{file = "bitarray-3.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a667ea05ba1ea81b722682276dbef1d36990f8908cf51e570099fd505a89f931"},
|
262
|
+
{file = "bitarray-3.0.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:d756bfeb62ca4fe65d2af7a39249d442c05070c047d03729ad6cd4c2e9b0f0bd"},
|
263
|
+
{file = "bitarray-3.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c9e9fef0754867d88e948ce8351c9fd7e507d8514e0f242fd67c907b9cdf98b3"},
|
264
|
+
{file = "bitarray-3.0.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:67a0b56dd02f2713f6f52cacb3f251afd67c94c5f0748026d307d87a81a8e15c"},
|
265
|
+
{file = "bitarray-3.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d8c36ddc1923bcc4c11b9994c54eaae25034812a42400b7b8a86fe6d242166a2"},
|
266
|
+
{file = "bitarray-3.0.0-cp39-cp39-win32.whl", hash = "sha256:1414a7102a3c4986f241480544f5c99f5d32258fb9b85c9c04e84e48c490ab35"},
|
267
|
+
{file = "bitarray-3.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:8c9733d2ff9b7838ac04bf1048baea153174753e6a47312be14c83c6a395424b"},
|
268
|
+
{file = "bitarray-3.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fef4e3b3f2084b4dae3e5316b44cda72587dcc81f68b4eb2dbda1b8d15261b61"},
|
269
|
+
{file = "bitarray-3.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7e9eee03f187cef1e54a4545124109ee0afc84398628b4b32ebb4852b4a66393"},
|
270
|
+
{file = "bitarray-3.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cb5702dd667f4bb10fed056ffdc4ddaae8193a52cd74cb2cdb54e71f4ef2dd1"},
|
271
|
+
{file = "bitarray-3.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:666e44b0458bb2894b64264a29f2cc7b5b2cbcc4c5e9cedfe1fdbde37a8e329a"},
|
272
|
+
{file = "bitarray-3.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:c756a92cf1c1abf01e56a4cc40cb89f0ff9147f2a0be5b557ec436a23ff464d8"},
|
273
|
+
{file = "bitarray-3.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:7e51e7f8289bf6bb631e1ef2a8f5e9ca287985ff518fe666abbdfdb6a848cb26"},
|
274
|
+
{file = "bitarray-3.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3fa5d8e4b28388b337face6ce4029be73585651a44866901513df44be9a491ab"},
|
275
|
+
{file = "bitarray-3.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3963b80a68aedcd722a9978d261ae53cb9bb6a8129cc29790f0f10ce5aca287a"},
|
276
|
+
{file = "bitarray-3.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0b555006a7dea53f6bebc616a4d0249cecbf8f1fadf77860120a2e5dbdc2f167"},
|
277
|
+
{file = "bitarray-3.0.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:4ac2027ca650a7302864ed2528220d6cc6921501b383e9917afc7a2424a1e36d"},
|
278
|
+
{file = "bitarray-3.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bf90aba4cff9e72e24ecdefe33bad608f147a23fa5c97790a5bab0e72fe62b6d"},
|
279
|
+
{file = "bitarray-3.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1a199e6d7c3bad5ba9d0e4dc00dde70ee7d111c9dfc521247fa646ef59fa57e"},
|
280
|
+
{file = "bitarray-3.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43b6c7c4f4a7b80e86e24a76f4c6b9b67d03229ea16d7d403520616535c32196"},
|
281
|
+
{file = "bitarray-3.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34fc13da3518f14825b239374734fce93c1a9299ed7b558c3ec1d659ec7e4c70"},
|
282
|
+
{file = "bitarray-3.0.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:369b6d457af94af901d632c7e625ca6caf0a7484110fc91c6290ce26bc4f1478"},
|
283
|
+
{file = "bitarray-3.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ee040ad3b7dfa05e459713099f16373c1f2a6f68b43cb0575a66718e7a5daef4"},
|
284
|
+
{file = "bitarray-3.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2dad7ba2af80f9ec1dd988c3aca7992408ec0d0b4c215b65d353d95ab0070b10"},
|
285
|
+
{file = "bitarray-3.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4839d3b64af51e4b8bb4a602563b98b9faeb34fd6c00ed23d7834e40a9d080fc"},
|
286
|
+
{file = "bitarray-3.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f71f24b58e75a889b9915e3197865302467f13e7390efdea5b6afc7424b3a2ea"},
|
287
|
+
{file = "bitarray-3.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:bcf0150ae0bcc4aa97bdfcb231b37bad1a59083c1b5012643b266012bf420e68"},
|
288
|
+
{file = "bitarray-3.0.0.tar.gz", hash = "sha256:a2083dc20f0d828a7cdf7a16b20dae56aab0f43dc4f347a3b3039f6577992b03"},
|
265
289
|
]
|
266
290
|
|
267
291
|
[[package]]
|
268
292
|
name = "bitstring"
|
269
|
-
version = "4.
|
293
|
+
version = "4.3.0"
|
270
294
|
description = "Simple construction, analysis and modification of binary data."
|
271
295
|
optional = false
|
272
296
|
python-versions = ">=3.8"
|
273
297
|
groups = ["main"]
|
274
298
|
files = [
|
275
|
-
{file = "bitstring-4.
|
276
|
-
{file = "bitstring-4.
|
299
|
+
{file = "bitstring-4.3.0-py3-none-any.whl", hash = "sha256:3282a896814813f8fe5fa09dbafac842c57aace1d3bfd94546c6f1ed9aafcbe1"},
|
300
|
+
{file = "bitstring-4.3.0.tar.gz", hash = "sha256:81800bc4e00b6508716adbae648e741256355c8dfd19541f76482fb89bee0313"},
|
277
301
|
]
|
278
302
|
|
279
303
|
[package.dependencies]
|
280
|
-
bitarray = ">=
|
304
|
+
bitarray = ">=3.0.0,<3.1"
|
281
305
|
|
282
306
|
[[package]]
|
283
307
|
name = "blessed"
|
@@ -328,7 +352,7 @@ tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""}
|
|
328
352
|
|
329
353
|
[package.extras]
|
330
354
|
docs = ["furo (>=2023.08.17)", "sphinx (>=7.0,<8.0)", "sphinx-argparse-cli (>=1.5)", "sphinx-autodoc-typehints (>=1.10)", "sphinx-issues (>=3.0.0)"]
|
331
|
-
test = ["build[uv,virtualenv]", "filelock (>=3)", "pytest (>=6.2.4)", "pytest-cov (>=2.12)", "pytest-mock (>=2)", "pytest-rerunfailures (>=9.1)", "pytest-xdist (>=1.34)", "setuptools (>=42.0.0)", "setuptools (>=56.0.0)", "setuptools (>=56.0.0)", "setuptools (>=67.8.0)", "wheel (>=0.36.0)"]
|
355
|
+
test = ["build[uv,virtualenv]", "filelock (>=3)", "pytest (>=6.2.4)", "pytest-cov (>=2.12)", "pytest-mock (>=2)", "pytest-rerunfailures (>=9.1)", "pytest-xdist (>=1.34)", "setuptools (>=42.0.0) ; python_version < \"3.10\"", "setuptools (>=56.0.0) ; python_version == \"3.10\"", "setuptools (>=56.0.0) ; python_version == \"3.11\"", "setuptools (>=67.8.0) ; python_version >= \"3.12\"", "wheel (>=0.36.0)"]
|
332
356
|
typing = ["build[uv]", "importlib-metadata (>=5.1)", "mypy (>=1.9.0,<1.10.0)", "tomli", "typing-extensions (>=3.7.4.3)"]
|
333
357
|
uv = ["uv (>=0.1.18)"]
|
334
358
|
virtualenv = ["virtualenv (>=20.0.35)"]
|
@@ -369,26 +393,26 @@ redis = ["redis (>=2.10.5)"]
|
|
369
393
|
|
370
394
|
[[package]]
|
371
395
|
name = "cachetools"
|
372
|
-
version = "5.5.
|
396
|
+
version = "5.5.2"
|
373
397
|
description = "Extensible memoizing collections and decorators"
|
374
398
|
optional = false
|
375
399
|
python-versions = ">=3.7"
|
376
400
|
groups = ["main"]
|
377
401
|
files = [
|
378
|
-
{file = "cachetools-5.5.
|
379
|
-
{file = "cachetools-5.5.
|
402
|
+
{file = "cachetools-5.5.2-py3-none-any.whl", hash = "sha256:d26a22bcc62eb95c3beabd9f1ee5e820d3d2704fe2967cbe350e20c8ffcd3f0a"},
|
403
|
+
{file = "cachetools-5.5.2.tar.gz", hash = "sha256:1a661caa9175d26759571b2e19580f9d6393969e5dfca11fdb1f947a23e640d4"},
|
380
404
|
]
|
381
405
|
|
382
406
|
[[package]]
|
383
407
|
name = "certifi"
|
384
|
-
version = "
|
408
|
+
version = "2025.1.31"
|
385
409
|
description = "Python package for providing Mozilla's CA Bundle."
|
386
410
|
optional = false
|
387
411
|
python-versions = ">=3.6"
|
388
412
|
groups = ["main"]
|
389
413
|
files = [
|
390
|
-
{file = "certifi-
|
391
|
-
{file = "certifi-
|
414
|
+
{file = "certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe"},
|
415
|
+
{file = "certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651"},
|
392
416
|
]
|
393
417
|
|
394
418
|
[[package]]
|
@@ -619,88 +643,79 @@ markers = {main = "sys_platform == \"win32\" or platform_system == \"Windows\" o
|
|
619
643
|
|
620
644
|
[[package]]
|
621
645
|
name = "coverage"
|
622
|
-
version = "7.6.
|
646
|
+
version = "7.6.12"
|
623
647
|
description = "Code coverage measurement for Python"
|
624
648
|
optional = false
|
625
|
-
python-versions = ">=3.
|
649
|
+
python-versions = ">=3.9"
|
626
650
|
groups = ["test"]
|
627
651
|
files = [
|
628
|
-
{file = "coverage-7.6.
|
629
|
-
{file = "coverage-7.6.
|
630
|
-
{file = "coverage-7.6.
|
631
|
-
{file = "coverage-7.6.
|
632
|
-
{file = "coverage-7.6.
|
633
|
-
{file = "coverage-7.6.
|
634
|
-
{file = "coverage-7.6.
|
635
|
-
{file = "coverage-7.6.
|
636
|
-
{file = "coverage-7.6.
|
637
|
-
{file = "coverage-7.6.
|
638
|
-
{file = "coverage-7.6.
|
639
|
-
{file = "coverage-7.6.
|
640
|
-
{file = "coverage-7.6.
|
641
|
-
{file = "coverage-7.6.
|
642
|
-
{file = "coverage-7.6.
|
643
|
-
{file = "coverage-7.6.
|
644
|
-
{file = "coverage-7.6.
|
645
|
-
{file = "coverage-7.6.
|
646
|
-
{file = "coverage-7.6.
|
647
|
-
{file = "coverage-7.6.
|
648
|
-
{file = "coverage-7.6.
|
649
|
-
{file = "coverage-7.6.
|
650
|
-
{file = "coverage-7.6.
|
651
|
-
{file = "coverage-7.6.
|
652
|
-
{file = "coverage-7.6.
|
653
|
-
{file = "coverage-7.6.
|
654
|
-
{file = "coverage-7.6.
|
655
|
-
{file = "coverage-7.6.
|
656
|
-
{file = "coverage-7.6.
|
657
|
-
{file = "coverage-7.6.
|
658
|
-
{file = "coverage-7.6.
|
659
|
-
{file = "coverage-7.6.
|
660
|
-
{file = "coverage-7.6.
|
661
|
-
{file = "coverage-7.6.
|
662
|
-
{file = "coverage-7.6.
|
663
|
-
{file = "coverage-7.6.
|
664
|
-
{file = "coverage-7.6.
|
665
|
-
{file = "coverage-7.6.
|
666
|
-
{file = "coverage-7.6.
|
667
|
-
{file = "coverage-7.6.
|
668
|
-
{file = "coverage-7.6.
|
669
|
-
{file = "coverage-7.6.
|
670
|
-
{file = "coverage-7.6.
|
671
|
-
{file = "coverage-7.6.
|
672
|
-
{file = "coverage-7.6.
|
673
|
-
{file = "coverage-7.6.
|
674
|
-
{file = "coverage-7.6.
|
675
|
-
{file = "coverage-7.6.
|
676
|
-
{file = "coverage-7.6.
|
677
|
-
{file = "coverage-7.6.
|
678
|
-
{file = "coverage-7.6.
|
679
|
-
{file = "coverage-7.6.
|
680
|
-
{file = "coverage-7.6.
|
681
|
-
{file = "coverage-7.6.
|
682
|
-
{file = "coverage-7.6.
|
683
|
-
{file = "coverage-7.6.
|
684
|
-
{file = "coverage-7.6.
|
685
|
-
{file = "coverage-7.6.
|
686
|
-
{file = "coverage-7.6.
|
687
|
-
{file = "coverage-7.6.
|
688
|
-
{file = "coverage-7.6.
|
689
|
-
{file = "coverage-7.6.
|
690
|
-
{file = "coverage-7.6.
|
691
|
-
{file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e0b2df163b8ed01d515807af24f63de04bebcecbd6c3bfeff88385789fdf75a"},
|
692
|
-
{file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:609b06f178fe8e9f89ef676532760ec0b4deea15e9969bf754b37f7c40326dbc"},
|
693
|
-
{file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:702855feff378050ae4f741045e19a32d57d19f3e0676d589df0575008ea5004"},
|
694
|
-
{file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:2bdb062ea438f22d99cba0d7829c2ef0af1d768d1e4a4f528087224c90b132cb"},
|
695
|
-
{file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:9c56863d44bd1c4fe2abb8a4d6f5371d197f1ac0ebdee542f07f35895fc07f36"},
|
696
|
-
{file = "coverage-7.6.1-cp39-cp39-win32.whl", hash = "sha256:6e2cd258d7d927d09493c8df1ce9174ad01b381d4729a9d8d4e38670ca24774c"},
|
697
|
-
{file = "coverage-7.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:06a737c882bd26d0d6ee7269b20b12f14a8704807a01056c80bb881a4b2ce6ca"},
|
698
|
-
{file = "coverage-7.6.1-pp38.pp39.pp310-none-any.whl", hash = "sha256:e9a6e0eb86070e8ccaedfbd9d38fec54864f3125ab95419970575b42af7541df"},
|
699
|
-
{file = "coverage-7.6.1.tar.gz", hash = "sha256:953510dfb7b12ab69d20135a0662397f077c59b1e6379a768e97c59d852ee51d"},
|
652
|
+
{file = "coverage-7.6.12-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:704c8c8c6ce6569286ae9622e534b4f5b9759b6f2cd643f1c1a61f666d534fe8"},
|
653
|
+
{file = "coverage-7.6.12-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ad7525bf0241e5502168ae9c643a2f6c219fa0a283001cee4cf23a9b7da75879"},
|
654
|
+
{file = "coverage-7.6.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:06097c7abfa611c91edb9e6920264e5be1d6ceb374efb4986f38b09eed4cb2fe"},
|
655
|
+
{file = "coverage-7.6.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:220fa6c0ad7d9caef57f2c8771918324563ef0d8272c94974717c3909664e674"},
|
656
|
+
{file = "coverage-7.6.12-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3688b99604a24492bcfe1c106278c45586eb819bf66a654d8a9a1433022fb2eb"},
|
657
|
+
{file = "coverage-7.6.12-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d1a987778b9c71da2fc8948e6f2656da6ef68f59298b7e9786849634c35d2c3c"},
|
658
|
+
{file = "coverage-7.6.12-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:cec6b9ce3bd2b7853d4a4563801292bfee40b030c05a3d29555fd2a8ee9bd68c"},
|
659
|
+
{file = "coverage-7.6.12-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ace9048de91293e467b44bce0f0381345078389814ff6e18dbac8fdbf896360e"},
|
660
|
+
{file = "coverage-7.6.12-cp310-cp310-win32.whl", hash = "sha256:ea31689f05043d520113e0552f039603c4dd71fa4c287b64cb3606140c66f425"},
|
661
|
+
{file = "coverage-7.6.12-cp310-cp310-win_amd64.whl", hash = "sha256:676f92141e3c5492d2a1596d52287d0d963df21bf5e55c8b03075a60e1ddf8aa"},
|
662
|
+
{file = "coverage-7.6.12-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e18aafdfb3e9ec0d261c942d35bd7c28d031c5855dadb491d2723ba54f4c3015"},
|
663
|
+
{file = "coverage-7.6.12-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:66fe626fd7aa5982cdebad23e49e78ef7dbb3e3c2a5960a2b53632f1f703ea45"},
|
664
|
+
{file = "coverage-7.6.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ef01d70198431719af0b1f5dcbefc557d44a190e749004042927b2a3fed0702"},
|
665
|
+
{file = "coverage-7.6.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07e92ae5a289a4bc4c0aae710c0948d3c7892e20fd3588224ebe242039573bf0"},
|
666
|
+
{file = "coverage-7.6.12-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e695df2c58ce526eeab11a2e915448d3eb76f75dffe338ea613c1201b33bab2f"},
|
667
|
+
{file = "coverage-7.6.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d74c08e9aaef995f8c4ef6d202dbd219c318450fe2a76da624f2ebb9c8ec5d9f"},
|
668
|
+
{file = "coverage-7.6.12-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e995b3b76ccedc27fe4f477b349b7d64597e53a43fc2961db9d3fbace085d69d"},
|
669
|
+
{file = "coverage-7.6.12-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b1f097878d74fe51e1ddd1be62d8e3682748875b461232cf4b52ddc6e6db0bba"},
|
670
|
+
{file = "coverage-7.6.12-cp311-cp311-win32.whl", hash = "sha256:1f7ffa05da41754e20512202c866d0ebfc440bba3b0ed15133070e20bf5aeb5f"},
|
671
|
+
{file = "coverage-7.6.12-cp311-cp311-win_amd64.whl", hash = "sha256:e216c5c45f89ef8971373fd1c5d8d1164b81f7f5f06bbf23c37e7908d19e8558"},
|
672
|
+
{file = "coverage-7.6.12-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b172f8e030e8ef247b3104902cc671e20df80163b60a203653150d2fc204d1ad"},
|
673
|
+
{file = "coverage-7.6.12-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:641dfe0ab73deb7069fb972d4d9725bf11c239c309ce694dd50b1473c0f641c3"},
|
674
|
+
{file = "coverage-7.6.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e549f54ac5f301e8e04c569dfdb907f7be71b06b88b5063ce9d6953d2d58574"},
|
675
|
+
{file = "coverage-7.6.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:959244a17184515f8c52dcb65fb662808767c0bd233c1d8a166e7cf74c9ea985"},
|
676
|
+
{file = "coverage-7.6.12-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bda1c5f347550c359f841d6614fb8ca42ae5cb0b74d39f8a1e204815ebe25750"},
|
677
|
+
{file = "coverage-7.6.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1ceeb90c3eda1f2d8c4c578c14167dbd8c674ecd7d38e45647543f19839dd6ea"},
|
678
|
+
{file = "coverage-7.6.12-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f16f44025c06792e0fb09571ae454bcc7a3ec75eeb3c36b025eccf501b1a4c3"},
|
679
|
+
{file = "coverage-7.6.12-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b076e625396e787448d27a411aefff867db2bffac8ed04e8f7056b07024eed5a"},
|
680
|
+
{file = "coverage-7.6.12-cp312-cp312-win32.whl", hash = "sha256:00b2086892cf06c7c2d74983c9595dc511acca00665480b3ddff749ec4fb2a95"},
|
681
|
+
{file = "coverage-7.6.12-cp312-cp312-win_amd64.whl", hash = "sha256:7ae6eabf519bc7871ce117fb18bf14e0e343eeb96c377667e3e5dd12095e0288"},
|
682
|
+
{file = "coverage-7.6.12-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:488c27b3db0ebee97a830e6b5a3ea930c4a6e2c07f27a5e67e1b3532e76b9ef1"},
|
683
|
+
{file = "coverage-7.6.12-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5d1095bbee1851269f79fd8e0c9b5544e4c00c0c24965e66d8cba2eb5bb535fd"},
|
684
|
+
{file = "coverage-7.6.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0533adc29adf6a69c1baa88c3d7dbcaadcffa21afbed3ca7a225a440e4744bf9"},
|
685
|
+
{file = "coverage-7.6.12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:53c56358d470fa507a2b6e67a68fd002364d23c83741dbc4c2e0680d80ca227e"},
|
686
|
+
{file = "coverage-7.6.12-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64cbb1a3027c79ca6310bf101014614f6e6e18c226474606cf725238cf5bc2d4"},
|
687
|
+
{file = "coverage-7.6.12-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:79cac3390bfa9836bb795be377395f28410811c9066bc4eefd8015258a7578c6"},
|
688
|
+
{file = "coverage-7.6.12-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:9b148068e881faa26d878ff63e79650e208e95cf1c22bd3f77c3ca7b1d9821a3"},
|
689
|
+
{file = "coverage-7.6.12-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8bec2ac5da793c2685ce5319ca9bcf4eee683b8a1679051f8e6ec04c4f2fd7dc"},
|
690
|
+
{file = "coverage-7.6.12-cp313-cp313-win32.whl", hash = "sha256:200e10beb6ddd7c3ded322a4186313d5ca9e63e33d8fab4faa67ef46d3460af3"},
|
691
|
+
{file = "coverage-7.6.12-cp313-cp313-win_amd64.whl", hash = "sha256:2b996819ced9f7dbb812c701485d58f261bef08f9b85304d41219b1496b591ef"},
|
692
|
+
{file = "coverage-7.6.12-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:299cf973a7abff87a30609879c10df0b3bfc33d021e1adabc29138a48888841e"},
|
693
|
+
{file = "coverage-7.6.12-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:4b467a8c56974bf06e543e69ad803c6865249d7a5ccf6980457ed2bc50312703"},
|
694
|
+
{file = "coverage-7.6.12-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2458f275944db8129f95d91aee32c828a408481ecde3b30af31d552c2ce284a0"},
|
695
|
+
{file = "coverage-7.6.12-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a9d8be07fb0832636a0f72b80d2a652fe665e80e720301fb22b191c3434d924"},
|
696
|
+
{file = "coverage-7.6.12-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14d47376a4f445e9743f6c83291e60adb1b127607a3618e3185bbc8091f0467b"},
|
697
|
+
{file = "coverage-7.6.12-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b95574d06aa9d2bd6e5cc35a5bbe35696342c96760b69dc4287dbd5abd4ad51d"},
|
698
|
+
{file = "coverage-7.6.12-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:ecea0c38c9079570163d663c0433a9af4094a60aafdca491c6a3d248c7432827"},
|
699
|
+
{file = "coverage-7.6.12-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2251fabcfee0a55a8578a9d29cecfee5f2de02f11530e7d5c5a05859aa85aee9"},
|
700
|
+
{file = "coverage-7.6.12-cp313-cp313t-win32.whl", hash = "sha256:eb5507795caabd9b2ae3f1adc95f67b1104971c22c624bb354232d65c4fc90b3"},
|
701
|
+
{file = "coverage-7.6.12-cp313-cp313t-win_amd64.whl", hash = "sha256:f60a297c3987c6c02ffb29effc70eadcbb412fe76947d394a1091a3615948e2f"},
|
702
|
+
{file = "coverage-7.6.12-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e7575ab65ca8399c8c4f9a7d61bbd2d204c8b8e447aab9d355682205c9dd948d"},
|
703
|
+
{file = "coverage-7.6.12-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8161d9fbc7e9fe2326de89cd0abb9f3599bccc1287db0aba285cb68d204ce929"},
|
704
|
+
{file = "coverage-7.6.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a1e465f398c713f1b212400b4e79a09829cd42aebd360362cd89c5bdc44eb87"},
|
705
|
+
{file = "coverage-7.6.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f25d8b92a4e31ff1bd873654ec367ae811b3a943583e05432ea29264782dc32c"},
|
706
|
+
{file = "coverage-7.6.12-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a936309a65cc5ca80fa9f20a442ff9e2d06927ec9a4f54bcba9c14c066323f2"},
|
707
|
+
{file = "coverage-7.6.12-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:aa6f302a3a0b5f240ee201297fff0bbfe2fa0d415a94aeb257d8b461032389bd"},
|
708
|
+
{file = "coverage-7.6.12-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f973643ef532d4f9be71dd88cf7588936685fdb576d93a79fe9f65bc337d9d73"},
|
709
|
+
{file = "coverage-7.6.12-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:78f5243bb6b1060aed6213d5107744c19f9571ec76d54c99cc15938eb69e0e86"},
|
710
|
+
{file = "coverage-7.6.12-cp39-cp39-win32.whl", hash = "sha256:69e62c5034291c845fc4df7f8155e8544178b6c774f97a99e2734b05eb5bed31"},
|
711
|
+
{file = "coverage-7.6.12-cp39-cp39-win_amd64.whl", hash = "sha256:b01a840ecc25dce235ae4c1b6a0daefb2a203dba0e6e980637ee9c2f6ee0df57"},
|
712
|
+
{file = "coverage-7.6.12-pp39.pp310-none-any.whl", hash = "sha256:7e39e845c4d764208e7b8f6a21c541ade741e2c41afabdfa1caa28687a3c98cf"},
|
713
|
+
{file = "coverage-7.6.12-py3-none-any.whl", hash = "sha256:eb8668cfbc279a536c633137deeb9435d2962caec279c3f8cf8b91fff6ff8953"},
|
714
|
+
{file = "coverage-7.6.12.tar.gz", hash = "sha256:48cfc4641d95d34766ad41d9573cc0f22a48aa88d22657a1fe01dca0dbae4de2"},
|
700
715
|
]
|
701
716
|
|
702
717
|
[package.extras]
|
703
|
-
toml = ["tomli"]
|
718
|
+
toml = ["tomli ; python_full_version <= \"3.11.0a6\""]
|
704
719
|
|
705
720
|
[[package]]
|
706
721
|
name = "crashtest"
|
@@ -766,21 +781,21 @@ test-randomorder = ["pytest-randomly"]
|
|
766
781
|
|
767
782
|
[[package]]
|
768
783
|
name = "deprecated"
|
769
|
-
version = "1.2.
|
784
|
+
version = "1.2.18"
|
770
785
|
description = "Python @deprecated decorator to deprecate old python classes, functions or methods."
|
771
786
|
optional = false
|
772
787
|
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
|
773
788
|
groups = ["main"]
|
774
789
|
files = [
|
775
|
-
{file = "Deprecated-1.2.
|
776
|
-
{file = "deprecated-1.2.
|
790
|
+
{file = "Deprecated-1.2.18-py2.py3-none-any.whl", hash = "sha256:bd5011788200372a32418f888e326a09ff80d0214bd961147cfed01b5c018eec"},
|
791
|
+
{file = "deprecated-1.2.18.tar.gz", hash = "sha256:422b6f6d859da6f2ef57857761bfb392480502a64c3028ca9bbe86085d72115d"},
|
777
792
|
]
|
778
793
|
|
779
794
|
[package.dependencies]
|
780
795
|
wrapt = ">=1.10,<2"
|
781
796
|
|
782
797
|
[package.extras]
|
783
|
-
dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "
|
798
|
+
dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "setuptools ; python_version >= \"3.12\"", "tox"]
|
784
799
|
|
785
800
|
[[package]]
|
786
801
|
name = "distlib"
|
@@ -806,6 +821,19 @@ files = [
|
|
806
821
|
{file = "distro-1.9.0.tar.gz", hash = "sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed"},
|
807
822
|
]
|
808
823
|
|
824
|
+
[[package]]
|
825
|
+
name = "docutils"
|
826
|
+
version = "0.21.2"
|
827
|
+
description = "Docutils -- Python Documentation Utilities"
|
828
|
+
optional = false
|
829
|
+
python-versions = ">=3.9"
|
830
|
+
groups = ["main"]
|
831
|
+
markers = "sys_platform == \"win32\""
|
832
|
+
files = [
|
833
|
+
{file = "docutils-0.21.2-py3-none-any.whl", hash = "sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2"},
|
834
|
+
{file = "docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f"},
|
835
|
+
]
|
836
|
+
|
809
837
|
[[package]]
|
810
838
|
name = "dulwich"
|
811
839
|
version = "0.22.7"
|
@@ -934,7 +962,7 @@ version = "1.2.2"
|
|
934
962
|
description = "Backport of PEP 654 (exception groups)"
|
935
963
|
optional = false
|
936
964
|
python-versions = ">=3.7"
|
937
|
-
groups = ["test"]
|
965
|
+
groups = ["main", "test"]
|
938
966
|
markers = "python_version < \"3.11\""
|
939
967
|
files = [
|
940
968
|
{file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"},
|
@@ -986,7 +1014,81 @@ files = [
|
|
986
1014
|
[package.extras]
|
987
1015
|
docs = ["furo (>=2024.8.6)", "sphinx (>=8.1.3)", "sphinx-autodoc-typehints (>=3)"]
|
988
1016
|
testing = ["covdefaults (>=2.3)", "coverage (>=7.6.10)", "diff-cover (>=9.2.1)", "pytest (>=8.3.4)", "pytest-asyncio (>=0.25.2)", "pytest-cov (>=6)", "pytest-mock (>=3.14)", "pytest-timeout (>=2.3.1)", "virtualenv (>=20.28.1)"]
|
989
|
-
typing = ["typing-extensions (>=4.12.2)"]
|
1017
|
+
typing = ["typing-extensions (>=4.12.2) ; python_version < \"3.11\""]
|
1018
|
+
|
1019
|
+
[[package]]
|
1020
|
+
name = "findpython"
|
1021
|
+
version = "0.6.2"
|
1022
|
+
description = "A utility to find python versions on your system"
|
1023
|
+
optional = false
|
1024
|
+
python-versions = ">=3.8"
|
1025
|
+
groups = ["main"]
|
1026
|
+
files = [
|
1027
|
+
{file = "findpython-0.6.2-py3-none-any.whl", hash = "sha256:bda62477f858ea623ef2269f5e734469a018104a5f6c0fd9317ba238464ddb76"},
|
1028
|
+
{file = "findpython-0.6.2.tar.gz", hash = "sha256:e0c75ba9f35a7f9bb4423eb31bd17358cccf15761b6837317719177aeff46723"},
|
1029
|
+
]
|
1030
|
+
|
1031
|
+
[package.dependencies]
|
1032
|
+
packaging = ">=20"
|
1033
|
+
|
1034
|
+
[[package]]
|
1035
|
+
name = "h11"
|
1036
|
+
version = "0.14.0"
|
1037
|
+
description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1"
|
1038
|
+
optional = false
|
1039
|
+
python-versions = ">=3.7"
|
1040
|
+
groups = ["main"]
|
1041
|
+
files = [
|
1042
|
+
{file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"},
|
1043
|
+
{file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"},
|
1044
|
+
]
|
1045
|
+
|
1046
|
+
[[package]]
|
1047
|
+
name = "httpcore"
|
1048
|
+
version = "1.0.7"
|
1049
|
+
description = "A minimal low-level HTTP client."
|
1050
|
+
optional = false
|
1051
|
+
python-versions = ">=3.8"
|
1052
|
+
groups = ["main"]
|
1053
|
+
files = [
|
1054
|
+
{file = "httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd"},
|
1055
|
+
{file = "httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c"},
|
1056
|
+
]
|
1057
|
+
|
1058
|
+
[package.dependencies]
|
1059
|
+
certifi = "*"
|
1060
|
+
h11 = ">=0.13,<0.15"
|
1061
|
+
|
1062
|
+
[package.extras]
|
1063
|
+
asyncio = ["anyio (>=4.0,<5.0)"]
|
1064
|
+
http2 = ["h2 (>=3,<5)"]
|
1065
|
+
socks = ["socksio (==1.*)"]
|
1066
|
+
trio = ["trio (>=0.22.0,<1.0)"]
|
1067
|
+
|
1068
|
+
[[package]]
|
1069
|
+
name = "httpx"
|
1070
|
+
version = "0.28.1"
|
1071
|
+
description = "The next generation HTTP client."
|
1072
|
+
optional = false
|
1073
|
+
python-versions = ">=3.8"
|
1074
|
+
groups = ["main"]
|
1075
|
+
files = [
|
1076
|
+
{file = "httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad"},
|
1077
|
+
{file = "httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc"},
|
1078
|
+
]
|
1079
|
+
|
1080
|
+
[package.dependencies]
|
1081
|
+
anyio = "*"
|
1082
|
+
certifi = "*"
|
1083
|
+
httpcore = "==1.*"
|
1084
|
+
idna = "*"
|
1085
|
+
|
1086
|
+
[package.extras]
|
1087
|
+
brotli = ["brotli ; platform_python_implementation == \"CPython\"", "brotlicffi ; platform_python_implementation != \"CPython\""]
|
1088
|
+
cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"]
|
1089
|
+
http2 = ["h2 (>=3,<5)"]
|
1090
|
+
socks = ["socksio (==1.*)"]
|
1091
|
+
zstd = ["zstandard (>=0.18.0)"]
|
990
1092
|
|
991
1093
|
[[package]]
|
992
1094
|
name = "humanfriendly"
|
@@ -1025,7 +1127,7 @@ description = "Read metadata from Python packages"
|
|
1025
1127
|
optional = false
|
1026
1128
|
python-versions = ">=3.9"
|
1027
1129
|
groups = ["main"]
|
1028
|
-
markers = "python_version < \"3.12\""
|
1130
|
+
markers = "sys_platform == \"win32\" or python_version < \"3.12\""
|
1029
1131
|
files = [
|
1030
1132
|
{file = "importlib_metadata-8.6.1-py3-none-any.whl", hash = "sha256:02a89390c1e15fdfdc0d7c6b25cb3e62650d0494005c97d6f148bf5b9787525e"},
|
1031
1133
|
{file = "importlib_metadata-8.6.1.tar.gz", hash = "sha256:310b41d755445d74569f993ccfc22838295d9fe005425094fad953d7f15c8580"},
|
@@ -1035,12 +1137,12 @@ files = [
|
|
1035
1137
|
zipp = ">=3.20"
|
1036
1138
|
|
1037
1139
|
[package.extras]
|
1038
|
-
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"]
|
1140
|
+
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""]
|
1039
1141
|
cover = ["pytest-cov"]
|
1040
1142
|
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
1041
1143
|
enabler = ["pytest-enabler (>=2.2)"]
|
1042
1144
|
perf = ["ipython"]
|
1043
|
-
test = ["flufl.flake8", "importlib_resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"]
|
1145
|
+
test = ["flufl.flake8", "importlib_resources (>=1.3) ; python_version < \"3.9\"", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"]
|
1044
1146
|
type = ["pytest-mypy"]
|
1045
1147
|
|
1046
1148
|
[[package]]
|
@@ -1132,7 +1234,7 @@ files = [
|
|
1132
1234
|
|
1133
1235
|
[package.extras]
|
1134
1236
|
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
1135
|
-
test = ["portend", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)"]
|
1237
|
+
test = ["portend", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""]
|
1136
1238
|
|
1137
1239
|
[[package]]
|
1138
1240
|
name = "jaraco-functools"
|
@@ -1150,7 +1252,7 @@ files = [
|
|
1150
1252
|
more-itertools = "*"
|
1151
1253
|
|
1152
1254
|
[package.extras]
|
1153
|
-
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"]
|
1255
|
+
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""]
|
1154
1256
|
cover = ["pytest-cov"]
|
1155
1257
|
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
1156
1258
|
enabler = ["pytest-enabler (>=2.2)"]
|
@@ -1172,7 +1274,7 @@ files = [
|
|
1172
1274
|
|
1173
1275
|
[package.extras]
|
1174
1276
|
test = ["async-timeout", "pytest", "pytest-asyncio (>=0.17)", "pytest-trio", "testpath", "trio"]
|
1175
|
-
trio = ["async_generator", "trio"]
|
1277
|
+
trio = ["async_generator ; python_version == \"3.6\"", "trio"]
|
1176
1278
|
|
1177
1279
|
[[package]]
|
1178
1280
|
name = "jinxed"
|
@@ -1221,7 +1323,7 @@ files = [
|
|
1221
1323
|
typish = ">=1.9.2"
|
1222
1324
|
|
1223
1325
|
[package.extras]
|
1224
|
-
test = ["attrs", "codecov", "coverage", "dataclasses", "pytest", "scons", "tzdata"]
|
1326
|
+
test = ["attrs", "codecov", "coverage", "dataclasses ; python_version == \"3.6\"", "pytest", "scons", "tzdata ; python_version >= \"3.9\""]
|
1225
1327
|
|
1226
1328
|
[[package]]
|
1227
1329
|
name = "keyring"
|
@@ -1245,7 +1347,7 @@ pywin32-ctypes = {version = ">=0.2.0", markers = "sys_platform == \"win32\""}
|
|
1245
1347
|
SecretStorage = {version = ">=3.2", markers = "sys_platform == \"linux\""}
|
1246
1348
|
|
1247
1349
|
[package.extras]
|
1248
|
-
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"]
|
1350
|
+
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""]
|
1249
1351
|
completion = ["shtab (>=1.1.0)"]
|
1250
1352
|
cover = ["pytest-cov"]
|
1251
1353
|
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
@@ -1255,24 +1357,24 @@ type = ["pygobject-stubs", "pytest-mypy", "shtab", "types-pywin32"]
|
|
1255
1357
|
|
1256
1358
|
[[package]]
|
1257
1359
|
name = "libusb"
|
1258
|
-
version = "1.0.27"
|
1360
|
+
version = "1.0.27.post4"
|
1259
1361
|
description = "Python binding for the libusb C library."
|
1260
1362
|
optional = false
|
1261
|
-
python-versions = "<4.0.0,>=3.
|
1363
|
+
python-versions = "<4.0.0,>=3.9.0"
|
1262
1364
|
groups = ["main"]
|
1263
1365
|
markers = "sys_platform == \"win32\""
|
1264
1366
|
files = [
|
1265
|
-
{file = "libusb-1.0.27-py3-none-any.whl", hash = "sha256:
|
1266
|
-
{file = "libusb-1.0.27.
|
1367
|
+
{file = "libusb-1.0.27.post4-py3-none-any.whl", hash = "sha256:c8b3d61b532092c0fa705ac3bd963d55edcbd54d7176a660edf2211b3842705e"},
|
1368
|
+
{file = "libusb-1.0.27.post4.tar.gz", hash = "sha256:c3a65b52166aaf77e711bbe61a5ef16b781aa33d25d9b8a32d83826faf1ec5fc"},
|
1267
1369
|
]
|
1268
1370
|
|
1269
1371
|
[package.dependencies]
|
1270
|
-
pkg-about = ">=1.
|
1271
|
-
setuptools = ">=
|
1372
|
+
pkg-about = ">=1.2.9"
|
1373
|
+
setuptools = ">=75.8.0"
|
1272
1374
|
|
1273
1375
|
[package.extras]
|
1274
|
-
doc = ["Sphinx (>=7.
|
1275
|
-
test = ["deepdiff (>=
|
1376
|
+
doc = ["Sphinx (>=7.4.7)", "nbsphinx (>=0.9.6)", "restructuredtext-lint (>=1.4.0)", "sphinx-autodoc-typehints (>=2.3.0)", "sphinx-copybutton (>=0.5.2)", "sphinx-lint (>=1.0.0)", "sphinx-tabs (>=3.4.5)", "sphinx-toolbox (>=3.8.2)", "sphinxcontrib-spelling (>=8.0.0)"]
|
1377
|
+
test = ["deepdiff (>=8.2.0)", "rich (>=13.9.4)"]
|
1276
1378
|
|
1277
1379
|
[[package]]
|
1278
1380
|
name = "loguru"
|
@@ -1291,7 +1393,7 @@ colorama = {version = ">=0.3.4", markers = "sys_platform == \"win32\""}
|
|
1291
1393
|
win32-setctime = {version = ">=1.0.0", markers = "sys_platform == \"win32\""}
|
1292
1394
|
|
1293
1395
|
[package.extras]
|
1294
|
-
dev = ["Sphinx (==8.1.3)", "build (==1.2.2)", "colorama (==0.4.5)", "colorama (==0.4.6)", "exceptiongroup (==1.1.3)", "freezegun (==1.1.0)", "freezegun (==1.5.0)", "mypy (==v0.910)", "mypy (==v0.971)", "mypy (==v1.13.0)", "mypy (==v1.4.1)", "myst-parser (==4.0.0)", "pre-commit (==4.0.1)", "pytest (==6.1.2)", "pytest (==8.3.2)", "pytest-cov (==2.12.1)", "pytest-cov (==5.0.0)", "pytest-cov (==6.0.0)", "pytest-mypy-plugins (==1.9.3)", "pytest-mypy-plugins (==3.1.0)", "sphinx-rtd-theme (==3.0.2)", "tox (==3.27.1)", "tox (==4.23.2)", "twine (==6.0.1)"]
|
1396
|
+
dev = ["Sphinx (==8.1.3) ; python_version >= \"3.11\"", "build (==1.2.2) ; python_version >= \"3.11\"", "colorama (==0.4.5) ; python_version < \"3.8\"", "colorama (==0.4.6) ; python_version >= \"3.8\"", "exceptiongroup (==1.1.3) ; python_version >= \"3.7\" and python_version < \"3.11\"", "freezegun (==1.1.0) ; python_version < \"3.8\"", "freezegun (==1.5.0) ; python_version >= \"3.8\"", "mypy (==v0.910) ; python_version < \"3.6\"", "mypy (==v0.971) ; python_version == \"3.6\"", "mypy (==v1.13.0) ; python_version >= \"3.8\"", "mypy (==v1.4.1) ; python_version == \"3.7\"", "myst-parser (==4.0.0) ; python_version >= \"3.11\"", "pre-commit (==4.0.1) ; python_version >= \"3.9\"", "pytest (==6.1.2) ; python_version < \"3.8\"", "pytest (==8.3.2) ; python_version >= \"3.8\"", "pytest-cov (==2.12.1) ; python_version < \"3.8\"", "pytest-cov (==5.0.0) ; python_version == \"3.8\"", "pytest-cov (==6.0.0) ; python_version >= \"3.9\"", "pytest-mypy-plugins (==1.9.3) ; python_version >= \"3.6\" and python_version < \"3.8\"", "pytest-mypy-plugins (==3.1.0) ; python_version >= \"3.8\"", "sphinx-rtd-theme (==3.0.2) ; python_version >= \"3.11\"", "tox (==3.27.1) ; python_version < \"3.8\"", "tox (==4.23.2) ; python_version >= \"3.8\"", "twine (==6.0.1) ; python_version >= \"3.11\""]
|
1295
1397
|
|
1296
1398
|
[[package]]
|
1297
1399
|
name = "markdown-it-py"
|
@@ -1460,38 +1562,61 @@ files = [
|
|
1460
1562
|
{file = "packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f"},
|
1461
1563
|
]
|
1462
1564
|
|
1565
|
+
[[package]]
|
1566
|
+
name = "pbs-installer"
|
1567
|
+
version = "2025.2.12"
|
1568
|
+
description = "Installer for Python Build Standalone"
|
1569
|
+
optional = false
|
1570
|
+
python-versions = ">=3.8"
|
1571
|
+
groups = ["main"]
|
1572
|
+
files = [
|
1573
|
+
{file = "pbs_installer-2025.2.12-py3-none-any.whl", hash = "sha256:3d9034047945b2d5f169cd9bb324f1f28c37d0ec120d6110ddb10aa07016fb79"},
|
1574
|
+
{file = "pbs_installer-2025.2.12.tar.gz", hash = "sha256:c6815165babf312c90d27ccd16afe598de641d616860f88e1855f183b0253b39"},
|
1575
|
+
]
|
1576
|
+
|
1577
|
+
[package.dependencies]
|
1578
|
+
httpx = {version = ">=0.27.0,<1", optional = true, markers = "extra == \"download\""}
|
1579
|
+
zstandard = {version = ">=0.21.0", optional = true, markers = "extra == \"install\""}
|
1580
|
+
|
1581
|
+
[package.extras]
|
1582
|
+
all = ["pbs-installer[download,install]"]
|
1583
|
+
download = ["httpx (>=0.27.0,<1)"]
|
1584
|
+
install = ["zstandard (>=0.21.0)"]
|
1585
|
+
|
1463
1586
|
[[package]]
|
1464
1587
|
name = "pkg-about"
|
1465
|
-
version = "1.
|
1588
|
+
version = "1.2.9"
|
1466
1589
|
description = "Shares Python package metadata at runtime."
|
1467
1590
|
optional = false
|
1468
|
-
python-versions = "<4.0.0,>=3.
|
1591
|
+
python-versions = "<4.0.0,>=3.9.0"
|
1469
1592
|
groups = ["main"]
|
1470
1593
|
markers = "sys_platform == \"win32\""
|
1471
1594
|
files = [
|
1472
|
-
{file = "
|
1473
|
-
{file = "pkg_about-1.
|
1595
|
+
{file = "pkg_about-1.2.9-py3-none-any.whl", hash = "sha256:aa407d9147ffaf08ee16edaaf9378054166468b56a4ed72c178d951bacabf62c"},
|
1596
|
+
{file = "pkg_about-1.2.9.tar.gz", hash = "sha256:357b72d7216f04b4a93797b7fca34230e53ea309024c1697d0a20dcd5ad48333"},
|
1474
1597
|
]
|
1475
1598
|
|
1476
1599
|
[package.dependencies]
|
1477
|
-
|
1478
|
-
|
1479
|
-
|
1600
|
+
docutils = ">=0.21.2"
|
1601
|
+
importlib-metadata = ">=8.6.1"
|
1602
|
+
packaging = ">=24.2.0"
|
1603
|
+
setuptools = ">=75.8.0"
|
1604
|
+
tomli = {version = ">=2.2.1", markers = "python_version < \"3.11\""}
|
1480
1605
|
|
1481
1606
|
[package.extras]
|
1482
|
-
doc = ["Sphinx (>=7.
|
1483
|
-
test = ["deepdiff (>=
|
1607
|
+
doc = ["Sphinx (>=7.4.7)", "nbsphinx (>=0.9.6)", "restructuredtext-lint (>=1.4.0)", "sphinx-autodoc-typehints (>=2.3.0)", "sphinx-copybutton (>=0.5.2)", "sphinx-lint (>=1.0.0)", "sphinx-tabs (>=3.4.5)", "sphinx-toolbox (>=3.8.2)", "sphinxcontrib-spelling (>=8.0.0)"]
|
1608
|
+
test = ["deepdiff (>=8.2.0)", "rich (>=13.9.4)"]
|
1484
1609
|
|
1485
1610
|
[[package]]
|
1486
1611
|
name = "pkginfo"
|
1487
|
-
version = "1.12.
|
1612
|
+
version = "1.12.1.2"
|
1488
1613
|
description = "Query metadata from sdists / bdists / installed packages."
|
1489
1614
|
optional = false
|
1490
1615
|
python-versions = ">=3.8"
|
1491
1616
|
groups = ["main"]
|
1492
1617
|
files = [
|
1493
|
-
{file = "pkginfo-1.12.
|
1494
|
-
{file = "pkginfo-1.12.
|
1618
|
+
{file = "pkginfo-1.12.1.2-py3-none-any.whl", hash = "sha256:c783ac885519cab2c34927ccfa6bf64b5a704d7c69afaea583dd9b7afe969343"},
|
1619
|
+
{file = "pkginfo-1.12.1.2.tar.gz", hash = "sha256:5cd957824ac36f140260964eba3c6be6442a8359b8c48f4adf90210f33a04b7b"},
|
1495
1620
|
]
|
1496
1621
|
|
1497
1622
|
[package.extras]
|
@@ -1532,14 +1657,14 @@ testing = ["pytest", "pytest-benchmark"]
|
|
1532
1657
|
|
1533
1658
|
[[package]]
|
1534
1659
|
name = "poetry"
|
1535
|
-
version = "2.
|
1660
|
+
version = "2.1.1"
|
1536
1661
|
description = "Python dependency management and packaging made easy."
|
1537
1662
|
optional = false
|
1538
1663
|
python-versions = "<4.0,>=3.9"
|
1539
1664
|
groups = ["main"]
|
1540
1665
|
files = [
|
1541
|
-
{file = "poetry-2.
|
1542
|
-
{file = "poetry-2.
|
1666
|
+
{file = "poetry-2.1.1-py3-none-any.whl", hash = "sha256:1d433880bd5b401327ddee789ccfe9ff197bf3b0cd240f0bc7cc99c84d14b16c"},
|
1667
|
+
{file = "poetry-2.1.1.tar.gz", hash = "sha256:d82673865bf13d6cd0dacf28c69a89670456d8df2f9e5da82bfb5f833ba00efc"},
|
1543
1668
|
]
|
1544
1669
|
|
1545
1670
|
[package.dependencies]
|
@@ -1548,13 +1673,15 @@ cachecontrol = {version = ">=0.14.0,<0.15.0", extras = ["filecache"]}
|
|
1548
1673
|
cleo = ">=2.1.0,<3.0.0"
|
1549
1674
|
dulwich = ">=0.22.6,<0.23.0"
|
1550
1675
|
fastjsonschema = ">=2.18.0,<3.0.0"
|
1676
|
+
findpython = ">=0.6.2,<0.7.0"
|
1551
1677
|
importlib-metadata = {version = ">=4.4", markers = "python_version < \"3.10\""}
|
1552
1678
|
installer = ">=0.7.0,<0.8.0"
|
1553
1679
|
keyring = ">=25.1.0,<26.0.0"
|
1554
1680
|
packaging = ">=24.0"
|
1681
|
+
pbs-installer = {version = ">=2025.1.6,<2026.0.0", extras = ["download", "install"]}
|
1555
1682
|
pkginfo = ">=1.12,<2.0"
|
1556
1683
|
platformdirs = ">=3.0.0,<5"
|
1557
|
-
poetry-core = "2.
|
1684
|
+
poetry-core = "2.1.1"
|
1558
1685
|
pyproject-hooks = ">=1.0.0,<2.0.0"
|
1559
1686
|
requests = ">=2.26,<3.0"
|
1560
1687
|
requests-toolbelt = ">=1.0.0,<2.0.0"
|
@@ -1567,14 +1694,14 @@ xattr = {version = ">=1.0.0,<2.0.0", markers = "sys_platform == \"darwin\""}
|
|
1567
1694
|
|
1568
1695
|
[[package]]
|
1569
1696
|
name = "poetry-core"
|
1570
|
-
version = "2.
|
1697
|
+
version = "2.1.1"
|
1571
1698
|
description = "Poetry PEP 517 Build Backend"
|
1572
1699
|
optional = false
|
1573
1700
|
python-versions = "<4.0,>=3.9"
|
1574
1701
|
groups = ["main"]
|
1575
1702
|
files = [
|
1576
|
-
{file = "poetry_core-2.
|
1577
|
-
{file = "poetry_core-2.
|
1703
|
+
{file = "poetry_core-2.1.1-py3-none-any.whl", hash = "sha256:bc3b0382ab4d00d5d780277fd0aad1580eb4403613b37fc60fec407b5bee1fe6"},
|
1704
|
+
{file = "poetry_core-2.1.1.tar.gz", hash = "sha256:c1a1f6f00e4254742f40988a8caf665549101cf9991122cd5de1198897768b1a"},
|
1578
1705
|
]
|
1579
1706
|
|
1580
1707
|
[[package]]
|
@@ -1604,7 +1731,7 @@ files = [
|
|
1604
1731
|
]
|
1605
1732
|
|
1606
1733
|
[package.extras]
|
1607
|
-
test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"]
|
1734
|
+
test = ["enum34 ; python_version <= \"3.4\"", "ipaddress ; python_version < \"3.0\"", "mock ; python_version < \"3.0\"", "pywin32 ; sys_platform == \"win32\"", "wmi ; sys_platform == \"win32\""]
|
1608
1735
|
|
1609
1736
|
[[package]]
|
1610
1737
|
name = "pycparser"
|
@@ -1620,26 +1747,26 @@ files = [
|
|
1620
1747
|
|
1621
1748
|
[[package]]
|
1622
1749
|
name = "pyelftools"
|
1623
|
-
version = "0.
|
1750
|
+
version = "0.32"
|
1624
1751
|
description = "Library for analyzing ELF files and DWARF debugging information"
|
1625
1752
|
optional = false
|
1626
1753
|
python-versions = "*"
|
1627
1754
|
groups = ["main"]
|
1628
1755
|
files = [
|
1629
|
-
{file = "pyelftools-0.
|
1630
|
-
{file = "pyelftools-0.
|
1756
|
+
{file = "pyelftools-0.32-py3-none-any.whl", hash = "sha256:013df952a006db5e138b1edf6d8a68ecc50630adbd0d83a2d41e7f846163d738"},
|
1757
|
+
{file = "pyelftools-0.32.tar.gz", hash = "sha256:6de90ee7b8263e740c8715a925382d4099b354f29ac48ea40d840cf7aa14ace5"},
|
1631
1758
|
]
|
1632
1759
|
|
1633
1760
|
[[package]]
|
1634
1761
|
name = "pygithub"
|
1635
|
-
version = "2.
|
1762
|
+
version = "2.6.1"
|
1636
1763
|
description = "Use the full Github API v3"
|
1637
1764
|
optional = false
|
1638
1765
|
python-versions = ">=3.8"
|
1639
1766
|
groups = ["main"]
|
1640
1767
|
files = [
|
1641
|
-
{file = "PyGithub-2.
|
1642
|
-
{file = "pygithub-2.
|
1768
|
+
{file = "PyGithub-2.6.1-py3-none-any.whl", hash = "sha256:6f2fa6d076ccae475f9fc392cc6cdbd54db985d4f69b8833a28397de75ed6ca3"},
|
1769
|
+
{file = "pygithub-2.6.1.tar.gz", hash = "sha256:b5c035392991cca63959e9453286b41b54d83bf2de2daa7d7ff7e4312cebf3bf"},
|
1643
1770
|
]
|
1644
1771
|
|
1645
1772
|
[package.dependencies]
|
@@ -1652,14 +1779,14 @@ urllib3 = ">=1.26.0"
|
|
1652
1779
|
|
1653
1780
|
[[package]]
|
1654
1781
|
name = "pygments"
|
1655
|
-
version = "2.
|
1782
|
+
version = "2.19.1"
|
1656
1783
|
description = "Pygments is a syntax highlighting package written in Python."
|
1657
1784
|
optional = false
|
1658
1785
|
python-versions = ">=3.8"
|
1659
1786
|
groups = ["main"]
|
1660
1787
|
files = [
|
1661
|
-
{file = "pygments-2.
|
1662
|
-
{file = "pygments-2.
|
1788
|
+
{file = "pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c"},
|
1789
|
+
{file = "pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f"},
|
1663
1790
|
]
|
1664
1791
|
|
1665
1792
|
[package.extras]
|
@@ -1667,14 +1794,14 @@ windows-terminal = ["colorama (>=0.4.6)"]
|
|
1667
1794
|
|
1668
1795
|
[[package]]
|
1669
1796
|
name = "pyjwt"
|
1670
|
-
version = "2.
|
1797
|
+
version = "2.10.1"
|
1671
1798
|
description = "JSON Web Token implementation in Python"
|
1672
1799
|
optional = false
|
1673
|
-
python-versions = ">=3.
|
1800
|
+
python-versions = ">=3.9"
|
1674
1801
|
groups = ["main"]
|
1675
1802
|
files = [
|
1676
|
-
{file = "PyJWT-2.
|
1677
|
-
{file = "pyjwt-2.
|
1803
|
+
{file = "PyJWT-2.10.1-py3-none-any.whl", hash = "sha256:dcdd193e30abefd5debf142f9adfcdd2b58004e644f25406ffaebd50bd98dacb"},
|
1804
|
+
{file = "pyjwt-2.10.1.tar.gz", hash = "sha256:3cc5772eb20009233caf06e9d8a0577824723b44e6648ee0a2aedb6cf9381953"},
|
1678
1805
|
]
|
1679
1806
|
|
1680
1807
|
[package.dependencies]
|
@@ -1848,14 +1975,14 @@ dev = ["pre-commit", "pytest-asyncio", "tox"]
|
|
1848
1975
|
|
1849
1976
|
[[package]]
|
1850
1977
|
name = "pyusb"
|
1851
|
-
version = "1.
|
1852
|
-
description = "
|
1978
|
+
version = "1.3.1"
|
1979
|
+
description = "Easy USB access for Python"
|
1853
1980
|
optional = false
|
1854
|
-
python-versions = ">=3.
|
1981
|
+
python-versions = ">=3.9.0"
|
1855
1982
|
groups = ["main"]
|
1856
1983
|
files = [
|
1857
|
-
{file = "pyusb-1.
|
1858
|
-
{file = "pyusb-1.
|
1984
|
+
{file = "pyusb-1.3.1-py3-none-any.whl", hash = "sha256:bf9b754557af4717fe80c2b07cc2b923a9151f5c08d17bdb5345dac09d6a0430"},
|
1985
|
+
{file = "pyusb-1.3.1.tar.gz", hash = "sha256:3af070b607467c1c164f49d5b0caabe8ac78dbed9298d703a8dbf9df4052d17e"},
|
1859
1986
|
]
|
1860
1987
|
|
1861
1988
|
[[package]]
|
@@ -1936,100 +2063,100 @@ files = [
|
|
1936
2063
|
|
1937
2064
|
[[package]]
|
1938
2065
|
name = "rapidfuzz"
|
1939
|
-
version = "3.
|
2066
|
+
version = "3.12.1"
|
1940
2067
|
description = "rapid fuzzy string matching"
|
1941
2068
|
optional = false
|
1942
2069
|
python-versions = ">=3.9"
|
1943
2070
|
groups = ["main"]
|
1944
2071
|
files = [
|
1945
|
-
{file = "rapidfuzz-3.
|
1946
|
-
{file = "rapidfuzz-3.
|
1947
|
-
{file = "rapidfuzz-3.
|
1948
|
-
{file = "rapidfuzz-3.
|
1949
|
-
{file = "rapidfuzz-3.
|
1950
|
-
{file = "rapidfuzz-3.
|
1951
|
-
{file = "rapidfuzz-3.
|
1952
|
-
{file = "rapidfuzz-3.
|
1953
|
-
{file = "rapidfuzz-3.
|
1954
|
-
{file = "rapidfuzz-3.
|
1955
|
-
{file = "rapidfuzz-3.
|
1956
|
-
{file = "rapidfuzz-3.
|
1957
|
-
{file = "rapidfuzz-3.
|
1958
|
-
{file = "rapidfuzz-3.
|
1959
|
-
{file = "rapidfuzz-3.
|
1960
|
-
{file = "rapidfuzz-3.
|
1961
|
-
{file = "rapidfuzz-3.
|
1962
|
-
{file = "rapidfuzz-3.
|
1963
|
-
{file = "rapidfuzz-3.
|
1964
|
-
{file = "rapidfuzz-3.
|
1965
|
-
{file = "rapidfuzz-3.
|
1966
|
-
{file = "rapidfuzz-3.
|
1967
|
-
{file = "rapidfuzz-3.
|
1968
|
-
{file = "rapidfuzz-3.
|
1969
|
-
{file = "rapidfuzz-3.
|
1970
|
-
{file = "rapidfuzz-3.
|
1971
|
-
{file = "rapidfuzz-3.
|
1972
|
-
{file = "rapidfuzz-3.
|
1973
|
-
{file = "rapidfuzz-3.
|
1974
|
-
{file = "rapidfuzz-3.
|
1975
|
-
{file = "rapidfuzz-3.
|
1976
|
-
{file = "rapidfuzz-3.
|
1977
|
-
{file = "rapidfuzz-3.
|
1978
|
-
{file = "rapidfuzz-3.
|
1979
|
-
{file = "rapidfuzz-3.
|
1980
|
-
{file = "rapidfuzz-3.
|
1981
|
-
{file = "rapidfuzz-3.
|
1982
|
-
{file = "rapidfuzz-3.
|
1983
|
-
{file = "rapidfuzz-3.
|
1984
|
-
{file = "rapidfuzz-3.
|
1985
|
-
{file = "rapidfuzz-3.
|
1986
|
-
{file = "rapidfuzz-3.
|
1987
|
-
{file = "rapidfuzz-3.
|
1988
|
-
{file = "rapidfuzz-3.
|
1989
|
-
{file = "rapidfuzz-3.
|
1990
|
-
{file = "rapidfuzz-3.
|
1991
|
-
{file = "rapidfuzz-3.
|
1992
|
-
{file = "rapidfuzz-3.
|
1993
|
-
{file = "rapidfuzz-3.
|
1994
|
-
{file = "rapidfuzz-3.
|
1995
|
-
{file = "rapidfuzz-3.
|
1996
|
-
{file = "rapidfuzz-3.
|
1997
|
-
{file = "rapidfuzz-3.
|
1998
|
-
{file = "rapidfuzz-3.
|
1999
|
-
{file = "rapidfuzz-3.
|
2000
|
-
{file = "rapidfuzz-3.
|
2001
|
-
{file = "rapidfuzz-3.
|
2002
|
-
{file = "rapidfuzz-3.
|
2003
|
-
{file = "rapidfuzz-3.
|
2004
|
-
{file = "rapidfuzz-3.
|
2005
|
-
{file = "rapidfuzz-3.
|
2006
|
-
{file = "rapidfuzz-3.
|
2007
|
-
{file = "rapidfuzz-3.
|
2008
|
-
{file = "rapidfuzz-3.
|
2009
|
-
{file = "rapidfuzz-3.
|
2010
|
-
{file = "rapidfuzz-3.
|
2011
|
-
{file = "rapidfuzz-3.
|
2012
|
-
{file = "rapidfuzz-3.
|
2013
|
-
{file = "rapidfuzz-3.
|
2014
|
-
{file = "rapidfuzz-3.
|
2015
|
-
{file = "rapidfuzz-3.
|
2016
|
-
{file = "rapidfuzz-3.
|
2017
|
-
{file = "rapidfuzz-3.
|
2018
|
-
{file = "rapidfuzz-3.
|
2019
|
-
{file = "rapidfuzz-3.
|
2020
|
-
{file = "rapidfuzz-3.
|
2021
|
-
{file = "rapidfuzz-3.
|
2022
|
-
{file = "rapidfuzz-3.
|
2023
|
-
{file = "rapidfuzz-3.
|
2024
|
-
{file = "rapidfuzz-3.
|
2025
|
-
{file = "rapidfuzz-3.
|
2026
|
-
{file = "rapidfuzz-3.
|
2027
|
-
{file = "rapidfuzz-3.
|
2028
|
-
{file = "rapidfuzz-3.
|
2029
|
-
{file = "rapidfuzz-3.
|
2030
|
-
{file = "rapidfuzz-3.
|
2031
|
-
{file = "rapidfuzz-3.
|
2032
|
-
{file = "rapidfuzz-3.
|
2072
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dbb7ea2fd786e6d66f225ef6eef1728832314f47e82fee877cb2a793ebda9579"},
|
2073
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1ae41361de05762c1eaa3955e5355de7c4c6f30d1ef1ea23d29bf738a35809ab"},
|
2074
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dc3c39e0317e7f68ba01bac056e210dd13c7a0abf823e7b6a5fe7e451ddfc496"},
|
2075
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:69f2520296f1ae1165b724a3aad28c56fd0ac7dd2e4cff101a5d986e840f02d4"},
|
2076
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34dcbf5a7daecebc242f72e2500665f0bde9dd11b779246c6d64d106a7d57c99"},
|
2077
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:773ab37fccf6e0513891f8eb4393961ddd1053c6eb7e62eaa876e94668fc6d31"},
|
2078
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ecf0e6de84c0bc2c0f48bc03ba23cef2c5f1245db7b26bc860c11c6fd7a097c"},
|
2079
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4dc2ebad4adb29d84a661f6a42494df48ad2b72993ff43fad2b9794804f91e45"},
|
2080
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:8389d98b9f54cb4f8a95f1fa34bf0ceee639e919807bb931ca479c7a5f2930bf"},
|
2081
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:165bcdecbfed9978962da1d3ec9c191b2ff9f1ccc2668fbaf0613a975b9aa326"},
|
2082
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:129d536740ab0048c1a06ccff73c683f282a2347c68069affae8dbc423a37c50"},
|
2083
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1b67e390261ffe98ec86c771b89425a78b60ccb610c3b5874660216fcdbded4b"},
|
2084
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-win32.whl", hash = "sha256:a66520180d3426b9dc2f8d312f38e19bc1fc5601f374bae5c916f53fa3534a7d"},
|
2085
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-win_amd64.whl", hash = "sha256:82260b20bc7a76556cecb0c063c87dad19246a570425d38f8107b8404ca3ac97"},
|
2086
|
+
{file = "rapidfuzz-3.12.1-cp310-cp310-win_arm64.whl", hash = "sha256:3a860d103bbb25c69c2e995fdf4fac8cb9f77fb69ec0a00469d7fd87ff148f46"},
|
2087
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6d9afad7b16d01c9e8929b6a205a18163c7e61b6cd9bcf9c81be77d5afc1067a"},
|
2088
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bb424ae7240f2d2f7d8dda66a61ebf603f74d92f109452c63b0dbf400204a437"},
|
2089
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42149e6d13bd6d06437d2a954dae2184dadbbdec0fdb82dafe92860d99f80519"},
|
2090
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:760ac95d788f2964b73da01e0bdffbe1bf2ad8273d0437565ce9092ae6ad1fbc"},
|
2091
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2cf27e8e4bf7bf9d92ef04f3d2b769e91c3f30ba99208c29f5b41e77271a2614"},
|
2092
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:00ceb8ff3c44ab0d6014106c71709c85dee9feedd6890eff77c814aa3798952b"},
|
2093
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8b61c558574fbc093d85940c3264c08c2b857b8916f8e8f222e7b86b0bb7d12"},
|
2094
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:346a2d8f17224e99f9ef988606c83d809d5917d17ad00207237e0965e54f9730"},
|
2095
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:d60d1db1b7e470e71ae096b6456e20ec56b52bde6198e2dbbc5e6769fa6797dc"},
|
2096
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:2477da227e266f9c712f11393182c69a99d3c8007ea27f68c5afc3faf401cc43"},
|
2097
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:8499c7d963ddea8adb6cffac2861ee39a1053e22ca8a5ee9de1197f8dc0275a5"},
|
2098
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:12802e5c4d8ae104fb6efeeb436098325ce0dca33b461c46e8df015c84fbef26"},
|
2099
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-win32.whl", hash = "sha256:e1061311d07e7cdcffa92c9b50c2ab4192907e70ca01b2e8e1c0b6b4495faa37"},
|
2100
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-win_amd64.whl", hash = "sha256:c6e4ed63e204daa863a802eec09feea5448617981ba5d150f843ad8e3ae071a4"},
|
2101
|
+
{file = "rapidfuzz-3.12.1-cp311-cp311-win_arm64.whl", hash = "sha256:920733a28c3af47870835d59ca9879579f66238f10de91d2b4b3f809d1ebfc5b"},
|
2102
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f6235b57ae3faa3f85cb3f90c9fee49b21bd671b76e90fc99e8ca2bdf0b5e4a3"},
|
2103
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:af4585e5812632c357fee5ab781c29f00cd06bea58f8882ff244cc4906ba6c9e"},
|
2104
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5942dc4460e5030c5f9e1d4c9383de2f3564a2503fe25e13e89021bcbfea2f44"},
|
2105
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0b31ab59e1a0df5afc21f3109b6cfd77b34040dbf54f1bad3989f885cfae1e60"},
|
2106
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:97c885a7a480b21164f57a706418c9bbc9a496ec6da087e554424358cadde445"},
|
2107
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d844c0587d969ce36fbf4b7cbf0860380ffeafc9ac5e17a7cbe8abf528d07bb"},
|
2108
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a93c95dce8917bf428064c64024de43ffd34ec5949dd4425780c72bd41f9d969"},
|
2109
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:834f6113d538af358f39296604a1953e55f8eeffc20cb4caf82250edbb8bf679"},
|
2110
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:a940aa71a7f37d7f0daac186066bf6668d4d3b7e7ef464cb50bc7ba89eae1f51"},
|
2111
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:ec9eaf73501c9a7de2c6938cb3050392e2ee0c5ca3921482acf01476b85a7226"},
|
2112
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3c5ec360694ac14bfaeb6aea95737cf1a6cf805b5fe8ea7fd28814706c7fa838"},
|
2113
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6b5e176524653ac46f1802bdd273a4b44a5f8d0054ed5013a8e8a4b72f254599"},
|
2114
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-win32.whl", hash = "sha256:6f463c6f1c42ec90e45d12a6379e18eddd5cdf74138804d8215619b6f4d31cea"},
|
2115
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-win_amd64.whl", hash = "sha256:b894fa2b30cd6498a29e5c470cb01c6ea898540b7e048a0342775a5000531334"},
|
2116
|
+
{file = "rapidfuzz-3.12.1-cp312-cp312-win_arm64.whl", hash = "sha256:43bb17056c5d1332f517b888c4e57846c4b5f936ed304917eeb5c9ac85d940d4"},
|
2117
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:97f824c15bc6933a31d6e3cbfa90188ba0e5043cf2b6dd342c2b90ee8b3fd47c"},
|
2118
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a973b3f5cabf931029a3ae4a0f72e3222e53d412ea85fc37ddc49e1774f00fbf"},
|
2119
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df7880e012228722dec1be02b9ef3898ed023388b8a24d6fa8213d7581932510"},
|
2120
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9c78582f50e75e6c2bc38c791ed291cb89cf26a3148c47860c1a04d6e5379c8e"},
|
2121
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2d7d9e6a04d8344b0198c96394c28874086888d0a2b2f605f30d1b27b9377b7d"},
|
2122
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5620001fd4d6644a2f56880388179cc8f3767670f0670160fcb97c3b46c828af"},
|
2123
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0666ab4c52e500af7ba5cc17389f5d15c0cdad06412c80312088519fdc25686d"},
|
2124
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:27b4d440fa50b50c515a91a01ee17e8ede719dca06eef4c0cccf1a111a4cfad3"},
|
2125
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:83dccfd5a754f2a0e8555b23dde31f0f7920601bfa807aa76829391ea81e7c67"},
|
2126
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b572b634740e047c53743ed27a1bb3b4f93cf4abbac258cd7af377b2c4a9ba5b"},
|
2127
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:7fa7b81fb52902d5f78dac42b3d6c835a6633b01ddf9b202a3ca8443be4b2d6a"},
|
2128
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b1d4fbff980cb6baef4ee675963c081f7b5d6580a105d6a4962b20f1f880e1fb"},
|
2129
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-win32.whl", hash = "sha256:3fe8da12ea77271097b303fa7624cfaf5afd90261002314e3b0047d36f4afd8d"},
|
2130
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-win_amd64.whl", hash = "sha256:6f7e92fc7d2a7f02e1e01fe4f539324dfab80f27cb70a30dd63a95445566946b"},
|
2131
|
+
{file = "rapidfuzz-3.12.1-cp313-cp313-win_arm64.whl", hash = "sha256:e31be53d7f4905a6a038296d8b773a79da9ee9f0cd19af9490c5c5a22e37d2e5"},
|
2132
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bef5c91d5db776523530073cda5b2a276283258d2f86764be4a008c83caf7acd"},
|
2133
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:841e0c2a5fbe8fc8b9b1a56e924c871899932c0ece7fbd970aa1c32bfd12d4bf"},
|
2134
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:046fc67f3885d94693a2151dd913aaf08b10931639cbb953dfeef3151cb1027c"},
|
2135
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b4d2d39b2e76c17f92edd6d384dc21fa020871c73251cdfa017149358937a41d"},
|
2136
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5857dda85165b986c26a474b22907db6b93932c99397c818bcdec96340a76d5"},
|
2137
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4c26cd1b9969ea70dbf0dbda3d2b54ab4b2e683d0fd0f17282169a19563efeb1"},
|
2138
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf56ea4edd69005786e6c80a9049d95003aeb5798803e7a2906194e7a3cb6472"},
|
2139
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:fbe7580b5fb2db8ebd53819171ff671124237a55ada3f64d20fc9a149d133960"},
|
2140
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:018506a53c3b20dcbda8c93d4484b9eb1764c93d5ea16be103cf6b0d8b11d860"},
|
2141
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:325c9c71b737fcd32e2a4e634c430c07dd3d374cfe134eded3fe46e4c6f9bf5d"},
|
2142
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:930756639643e3aa02d3136b6fec74e5b9370a24f8796e1065cd8a857a6a6c50"},
|
2143
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0acbd27543b158cb915fde03877383816a9e83257832818f1e803bac9b394900"},
|
2144
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-win32.whl", hash = "sha256:80ff9283c54d7d29b2d954181e137deee89bec62f4a54675d8b6dbb6b15d3e03"},
|
2145
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-win_amd64.whl", hash = "sha256:fd37e53f0ed239d0cec27b250cec958982a8ba252ce64aa5e6052de3a82fa8db"},
|
2146
|
+
{file = "rapidfuzz-3.12.1-cp39-cp39-win_arm64.whl", hash = "sha256:4a4422e4f73a579755ab60abccb3ff148b5c224b3c7454a13ca217dfbad54da6"},
|
2147
|
+
{file = "rapidfuzz-3.12.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b7cba636c32a6fc3a402d1cb2c70c6c9f8e6319380aaf15559db09d868a23e56"},
|
2148
|
+
{file = "rapidfuzz-3.12.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b79286738a43e8df8420c4b30a92712dec6247430b130f8e015c3a78b6d61ac2"},
|
2149
|
+
{file = "rapidfuzz-3.12.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8dc1937198e7ff67e217e60bfa339f05da268d91bb15fec710452d11fe2fdf60"},
|
2150
|
+
{file = "rapidfuzz-3.12.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b85817a57cf8db32dd5d2d66ccfba656d299b09eaf86234295f89f91be1a0db2"},
|
2151
|
+
{file = "rapidfuzz-3.12.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:04283c6f3e79f13a784f844cd5b1df4f518ad0f70c789aea733d106c26e1b4fb"},
|
2152
|
+
{file = "rapidfuzz-3.12.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a718f740553aad5f4daef790191511da9c6eae893ee1fc2677627e4b624ae2db"},
|
2153
|
+
{file = "rapidfuzz-3.12.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cbdf145c7e4ebf2e81c794ed7a582c4acad19e886d5ad6676086369bd6760753"},
|
2154
|
+
{file = "rapidfuzz-3.12.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:0d03ad14a26a477be221fddc002954ae68a9e2402b9d85433f2d0a6af01aa2bb"},
|
2155
|
+
{file = "rapidfuzz-3.12.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f1187aeae9c89e838d2a0a2b954b4052e4897e5f62e5794ef42527bf039d469e"},
|
2156
|
+
{file = "rapidfuzz-3.12.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd47dfb1bca9673a48b923b3d988b7668ee8efd0562027f58b0f2b7abf27144c"},
|
2157
|
+
{file = "rapidfuzz-3.12.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:187cdb402e223264eebed2fe671e367e636a499a7a9c82090b8d4b75aa416c2a"},
|
2158
|
+
{file = "rapidfuzz-3.12.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:d6899b41bf6c30282179f77096c1939f1454836440a8ab05b48ebf7026a3b590"},
|
2159
|
+
{file = "rapidfuzz-3.12.1.tar.gz", hash = "sha256:6a98bbca18b4a37adddf2d8201856441c26e9c981d8895491b5bc857b5f780eb"},
|
2033
2160
|
]
|
2034
2161
|
|
2035
2162
|
[package.extras]
|
@@ -2118,14 +2245,14 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"]
|
|
2118
2245
|
|
2119
2246
|
[[package]]
|
2120
2247
|
name = "rich-click"
|
2121
|
-
version = "1.8.
|
2248
|
+
version = "1.8.6"
|
2122
2249
|
description = "Format click help output nicely with rich"
|
2123
2250
|
optional = false
|
2124
2251
|
python-versions = ">=3.7"
|
2125
2252
|
groups = ["main"]
|
2126
2253
|
files = [
|
2127
|
-
{file = "rich_click-1.8.
|
2128
|
-
{file = "rich_click-1.8.
|
2254
|
+
{file = "rich_click-1.8.6-py3-none-any.whl", hash = "sha256:55fb571bad7d3d69ac43ca45f05b44616fd019616161b1815ff053567b9a8e22"},
|
2255
|
+
{file = "rich_click-1.8.6.tar.gz", hash = "sha256:8a2448fd80e3d4e16fcb3815bfbc19be9bae75c9bb6aedf637901e45f3555752"},
|
2129
2256
|
]
|
2130
2257
|
|
2131
2258
|
[package.dependencies]
|
@@ -2171,25 +2298,25 @@ jeepney = ">=0.6"
|
|
2171
2298
|
|
2172
2299
|
[[package]]
|
2173
2300
|
name = "setuptools"
|
2174
|
-
version = "75.
|
2301
|
+
version = "75.8.1"
|
2175
2302
|
description = "Easily download, build, install, upgrade, and uninstall Python packages"
|
2176
2303
|
optional = false
|
2177
|
-
python-versions = ">=3.
|
2304
|
+
python-versions = ">=3.9"
|
2178
2305
|
groups = ["main"]
|
2179
2306
|
markers = "sys_platform == \"win32\""
|
2180
2307
|
files = [
|
2181
|
-
{file = "setuptools-75.
|
2182
|
-
{file = "setuptools-75.
|
2308
|
+
{file = "setuptools-75.8.1-py3-none-any.whl", hash = "sha256:3bc32c0b84c643299ca94e77f834730f126efd621de0cc1de64119e0e17dab1f"},
|
2309
|
+
{file = "setuptools-75.8.1.tar.gz", hash = "sha256:65fb779a8f28895242923582eadca2337285f0891c2c9e160754df917c3d2530"},
|
2183
2310
|
]
|
2184
2311
|
|
2185
2312
|
[package.extras]
|
2186
|
-
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.
|
2187
|
-
core = ["
|
2313
|
+
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\"", "ruff (>=0.8.0) ; sys_platform != \"cygwin\""]
|
2314
|
+
core = ["importlib_metadata (>=6) ; python_version < \"3.10\"", "jaraco.collections", "jaraco.functools (>=4)", "jaraco.text (>=3.7)", "more_itertools", "more_itertools (>=8.8)", "packaging", "packaging (>=24.2)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1) ; python_version < \"3.11\"", "wheel (>=0.43.0)"]
|
2188
2315
|
cover = ["pytest-cov"]
|
2189
2316
|
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"]
|
2190
2317
|
enabler = ["pytest-enabler (>=2.2)"]
|
2191
|
-
test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2
|
2192
|
-
type = ["
|
2318
|
+
test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21) ; python_version >= \"3.9\" and sys_platform != \"cygwin\"", "jaraco.envs (>=2.2)", "jaraco.path (>=3.7.2)", "jaraco.test (>=5.5)", "packaging (>=24.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf ; sys_platform != \"cygwin\"", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"]
|
2319
|
+
type = ["importlib_metadata (>=7.0.2) ; python_version < \"3.10\"", "jaraco.develop (>=7.21) ; sys_platform != \"cygwin\"", "mypy (==1.14.*)", "pytest-mypy"]
|
2193
2320
|
|
2194
2321
|
[[package]]
|
2195
2322
|
name = "shellingham"
|
@@ -2215,6 +2342,18 @@ files = [
|
|
2215
2342
|
{file = "six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81"},
|
2216
2343
|
]
|
2217
2344
|
|
2345
|
+
[[package]]
|
2346
|
+
name = "sniffio"
|
2347
|
+
version = "1.3.1"
|
2348
|
+
description = "Sniff out which async library your code is running under"
|
2349
|
+
optional = false
|
2350
|
+
python-versions = ">=3.7"
|
2351
|
+
groups = ["main"]
|
2352
|
+
files = [
|
2353
|
+
{file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"},
|
2354
|
+
{file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"},
|
2355
|
+
]
|
2356
|
+
|
2218
2357
|
[[package]]
|
2219
2358
|
name = "soupsieve"
|
2220
2359
|
version = "2.6"
|
@@ -2299,14 +2438,14 @@ files = [
|
|
2299
2438
|
|
2300
2439
|
[[package]]
|
2301
2440
|
name = "trove-classifiers"
|
2302
|
-
version = "2025.
|
2441
|
+
version = "2025.2.18.16"
|
2303
2442
|
description = "Canonical source for classifiers on PyPI (pypi.org)."
|
2304
2443
|
optional = false
|
2305
2444
|
python-versions = "*"
|
2306
2445
|
groups = ["main"]
|
2307
2446
|
files = [
|
2308
|
-
{file = "trove_classifiers-2025.
|
2309
|
-
{file = "trove_classifiers-2025.
|
2447
|
+
{file = "trove_classifiers-2025.2.18.16-py3-none-any.whl", hash = "sha256:7f6dfae899f23f04b73bc09e0754d9219a6fc4d6cca6acd62f1850a87ea92262"},
|
2448
|
+
{file = "trove_classifiers-2025.2.18.16.tar.gz", hash = "sha256:b1ee2e1668589217d4edf506743e28b1834da128f8a122bad522c02d837006e1"},
|
2310
2449
|
]
|
2311
2450
|
|
2312
2451
|
[[package]]
|
@@ -2337,32 +2476,32 @@ test = ["codecov", "coverage", "mypy", "nptyping (>=1.3.0)", "numpy", "pycodesty
|
|
2337
2476
|
|
2338
2477
|
[[package]]
|
2339
2478
|
name = "urllib3"
|
2340
|
-
version = "2.
|
2479
|
+
version = "2.3.0"
|
2341
2480
|
description = "HTTP library with thread-safe connection pooling, file post, and more."
|
2342
2481
|
optional = false
|
2343
|
-
python-versions = ">=3.
|
2482
|
+
python-versions = ">=3.9"
|
2344
2483
|
groups = ["main"]
|
2345
2484
|
files = [
|
2346
|
-
{file = "urllib3-2.
|
2347
|
-
{file = "urllib3-2.
|
2485
|
+
{file = "urllib3-2.3.0-py3-none-any.whl", hash = "sha256:1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df"},
|
2486
|
+
{file = "urllib3-2.3.0.tar.gz", hash = "sha256:f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d"},
|
2348
2487
|
]
|
2349
2488
|
|
2350
2489
|
[package.extras]
|
2351
|
-
brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"]
|
2490
|
+
brotli = ["brotli (>=1.0.9) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\""]
|
2352
2491
|
h2 = ["h2 (>=4,<5)"]
|
2353
2492
|
socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
|
2354
2493
|
zstd = ["zstandard (>=0.18.0)"]
|
2355
2494
|
|
2356
2495
|
[[package]]
|
2357
2496
|
name = "virtualenv"
|
2358
|
-
version = "20.29.
|
2497
|
+
version = "20.29.2"
|
2359
2498
|
description = "Virtual Python Environment builder"
|
2360
2499
|
optional = false
|
2361
2500
|
python-versions = ">=3.8"
|
2362
2501
|
groups = ["main"]
|
2363
2502
|
files = [
|
2364
|
-
{file = "virtualenv-20.29.
|
2365
|
-
{file = "virtualenv-20.29.
|
2503
|
+
{file = "virtualenv-20.29.2-py3-none-any.whl", hash = "sha256:febddfc3d1ea571bdb1dc0f98d7b45d24def7428214d4fb73cc486c9568cce6a"},
|
2504
|
+
{file = "virtualenv-20.29.2.tar.gz", hash = "sha256:fdaabebf6d03b5ba83ae0a02cfe96f48a716f4fae556461d180825866f75b728"},
|
2366
2505
|
]
|
2367
2506
|
|
2368
2507
|
[package.dependencies]
|
@@ -2372,7 +2511,7 @@ platformdirs = ">=3.9.1,<5"
|
|
2372
2511
|
|
2373
2512
|
[package.extras]
|
2374
2513
|
docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2,!=7.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"]
|
2375
|
-
test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8)", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10)"]
|
2514
|
+
test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8) ; platform_python_implementation == \"PyPy\" or platform_python_implementation == \"CPython\" and sys_platform == \"win32\" and python_version >= \"3.13\"", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10) ; platform_python_implementation == \"CPython\""]
|
2376
2515
|
|
2377
2516
|
[[package]]
|
2378
2517
|
name = "wcwidth"
|
@@ -2400,81 +2539,95 @@ files = [
|
|
2400
2539
|
]
|
2401
2540
|
|
2402
2541
|
[package.extras]
|
2403
|
-
dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"]
|
2542
|
+
dev = ["black (>=19.3b0) ; python_version >= \"3.6\"", "pytest (>=4.6.2)"]
|
2404
2543
|
|
2405
2544
|
[[package]]
|
2406
2545
|
name = "wrapt"
|
2407
|
-
version = "1.17.
|
2546
|
+
version = "1.17.2"
|
2408
2547
|
description = "Module for decorators, wrappers and monkey patching."
|
2409
2548
|
optional = false
|
2410
2549
|
python-versions = ">=3.8"
|
2411
2550
|
groups = ["main"]
|
2412
2551
|
files = [
|
2413
|
-
{file = "wrapt-1.17.
|
2414
|
-
{file = "wrapt-1.17.
|
2415
|
-
{file = "wrapt-1.17.
|
2416
|
-
{file = "wrapt-1.17.
|
2417
|
-
{file = "wrapt-1.17.
|
2418
|
-
{file = "wrapt-1.17.
|
2419
|
-
{file = "wrapt-1.17.
|
2420
|
-
{file = "wrapt-1.17.
|
2421
|
-
{file = "wrapt-1.17.
|
2422
|
-
{file = "wrapt-1.17.
|
2423
|
-
{file = "wrapt-1.17.
|
2424
|
-
{file = "wrapt-1.17.
|
2425
|
-
{file = "wrapt-1.17.
|
2426
|
-
{file = "wrapt-1.17.
|
2427
|
-
{file = "wrapt-1.17.
|
2428
|
-
{file = "wrapt-1.17.
|
2429
|
-
{file = "wrapt-1.17.
|
2430
|
-
{file = "wrapt-1.17.
|
2431
|
-
{file = "wrapt-1.17.
|
2432
|
-
{file = "wrapt-1.17.
|
2433
|
-
{file = "wrapt-1.17.
|
2434
|
-
{file = "wrapt-1.17.
|
2435
|
-
{file = "wrapt-1.17.
|
2436
|
-
{file = "wrapt-1.17.
|
2437
|
-
{file = "wrapt-1.17.
|
2438
|
-
{file = "wrapt-1.17.
|
2439
|
-
{file = "wrapt-1.17.
|
2440
|
-
{file = "wrapt-1.17.
|
2441
|
-
{file = "wrapt-1.17.
|
2442
|
-
{file = "wrapt-1.17.
|
2443
|
-
{file = "wrapt-1.17.
|
2444
|
-
{file = "wrapt-1.17.
|
2445
|
-
{file = "wrapt-1.17.
|
2446
|
-
{file = "wrapt-1.17.
|
2447
|
-
{file = "wrapt-1.17.
|
2448
|
-
{file = "wrapt-1.17.
|
2449
|
-
{file = "wrapt-1.17.
|
2450
|
-
{file = "wrapt-1.17.
|
2451
|
-
{file = "wrapt-1.17.
|
2452
|
-
{file = "wrapt-1.17.
|
2453
|
-
{file = "wrapt-1.17.
|
2454
|
-
{file = "wrapt-1.17.
|
2455
|
-
{file = "wrapt-1.17.
|
2456
|
-
{file = "wrapt-1.17.
|
2457
|
-
{file = "wrapt-1.17.
|
2458
|
-
{file = "wrapt-1.17.
|
2459
|
-
{file = "wrapt-1.17.
|
2460
|
-
{file = "wrapt-1.17.
|
2461
|
-
{file = "wrapt-1.17.
|
2462
|
-
{file = "wrapt-1.17.
|
2463
|
-
{file = "wrapt-1.17.
|
2464
|
-
{file = "wrapt-1.17.
|
2465
|
-
{file = "wrapt-1.17.
|
2466
|
-
{file = "wrapt-1.17.
|
2467
|
-
{file = "wrapt-1.17.
|
2468
|
-
{file = "wrapt-1.17.
|
2469
|
-
{file = "wrapt-1.17.
|
2470
|
-
{file = "wrapt-1.17.
|
2471
|
-
{file = "wrapt-1.17.
|
2472
|
-
{file = "wrapt-1.17.
|
2473
|
-
{file = "wrapt-1.17.
|
2474
|
-
{file = "wrapt-1.17.
|
2475
|
-
{file = "wrapt-1.17.
|
2476
|
-
{file = "wrapt-1.17.
|
2477
|
-
{file = "wrapt-1.17.
|
2552
|
+
{file = "wrapt-1.17.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3d57c572081fed831ad2d26fd430d565b76aa277ed1d30ff4d40670b1c0dd984"},
|
2553
|
+
{file = "wrapt-1.17.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b5e251054542ae57ac7f3fba5d10bfff615b6c2fb09abeb37d2f1463f841ae22"},
|
2554
|
+
{file = "wrapt-1.17.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:80dd7db6a7cb57ffbc279c4394246414ec99537ae81ffd702443335a61dbf3a7"},
|
2555
|
+
{file = "wrapt-1.17.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a6e821770cf99cc586d33833b2ff32faebdbe886bd6322395606cf55153246c"},
|
2556
|
+
{file = "wrapt-1.17.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b60fb58b90c6d63779cb0c0c54eeb38941bae3ecf7a73c764c52c88c2dcb9d72"},
|
2557
|
+
{file = "wrapt-1.17.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b870b5df5b71d8c3359d21be8f0d6c485fa0ebdb6477dda51a1ea54a9b558061"},
|
2558
|
+
{file = "wrapt-1.17.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4011d137b9955791f9084749cba9a367c68d50ab8d11d64c50ba1688c9b457f2"},
|
2559
|
+
{file = "wrapt-1.17.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:1473400e5b2733e58b396a04eb7f35f541e1fb976d0c0724d0223dd607e0f74c"},
|
2560
|
+
{file = "wrapt-1.17.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3cedbfa9c940fdad3e6e941db7138e26ce8aad38ab5fe9dcfadfed9db7a54e62"},
|
2561
|
+
{file = "wrapt-1.17.2-cp310-cp310-win32.whl", hash = "sha256:582530701bff1dec6779efa00c516496968edd851fba224fbd86e46cc6b73563"},
|
2562
|
+
{file = "wrapt-1.17.2-cp310-cp310-win_amd64.whl", hash = "sha256:58705da316756681ad3c9c73fd15499aa4d8c69f9fd38dc8a35e06c12468582f"},
|
2563
|
+
{file = "wrapt-1.17.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ff04ef6eec3eee8a5efef2401495967a916feaa353643defcc03fc74fe213b58"},
|
2564
|
+
{file = "wrapt-1.17.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4db983e7bca53819efdbd64590ee96c9213894272c776966ca6306b73e4affda"},
|
2565
|
+
{file = "wrapt-1.17.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9abc77a4ce4c6f2a3168ff34b1da9b0f311a8f1cfd694ec96b0603dff1c79438"},
|
2566
|
+
{file = "wrapt-1.17.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b929ac182f5ace000d459c59c2c9c33047e20e935f8e39371fa6e3b85d56f4a"},
|
2567
|
+
{file = "wrapt-1.17.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f09b286faeff3c750a879d336fb6d8713206fc97af3adc14def0cdd349df6000"},
|
2568
|
+
{file = "wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a7ed2d9d039bd41e889f6fb9364554052ca21ce823580f6a07c4ec245c1f5d6"},
|
2569
|
+
{file = "wrapt-1.17.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:129a150f5c445165ff941fc02ee27df65940fcb8a22a61828b1853c98763a64b"},
|
2570
|
+
{file = "wrapt-1.17.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1fb5699e4464afe5c7e65fa51d4f99e0b2eadcc176e4aa33600a3df7801d6662"},
|
2571
|
+
{file = "wrapt-1.17.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9a2bce789a5ea90e51a02dfcc39e31b7f1e662bc3317979aa7e5538e3a034f72"},
|
2572
|
+
{file = "wrapt-1.17.2-cp311-cp311-win32.whl", hash = "sha256:4afd5814270fdf6380616b321fd31435a462019d834f83c8611a0ce7484c7317"},
|
2573
|
+
{file = "wrapt-1.17.2-cp311-cp311-win_amd64.whl", hash = "sha256:acc130bc0375999da18e3d19e5a86403667ac0c4042a094fefb7eec8ebac7cf3"},
|
2574
|
+
{file = "wrapt-1.17.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d5e2439eecc762cd85e7bd37161d4714aa03a33c5ba884e26c81559817ca0925"},
|
2575
|
+
{file = "wrapt-1.17.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fc7cb4c1c744f8c05cd5f9438a3caa6ab94ce8344e952d7c45a8ed59dd88392"},
|
2576
|
+
{file = "wrapt-1.17.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8fdbdb757d5390f7c675e558fd3186d590973244fab0c5fe63d373ade3e99d40"},
|
2577
|
+
{file = "wrapt-1.17.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb1d0dbf99411f3d871deb6faa9aabb9d4e744d67dcaaa05399af89d847a91d"},
|
2578
|
+
{file = "wrapt-1.17.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d18a4865f46b8579d44e4fe1e2bcbc6472ad83d98e22a26c963d46e4c125ef0b"},
|
2579
|
+
{file = "wrapt-1.17.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc570b5f14a79734437cb7b0500376b6b791153314986074486e0b0fa8d71d98"},
|
2580
|
+
{file = "wrapt-1.17.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6d9187b01bebc3875bac9b087948a2bccefe464a7d8f627cf6e48b1bbae30f82"},
|
2581
|
+
{file = "wrapt-1.17.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9e8659775f1adf02eb1e6f109751268e493c73716ca5761f8acb695e52a756ae"},
|
2582
|
+
{file = "wrapt-1.17.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e8b2816ebef96d83657b56306152a93909a83f23994f4b30ad4573b00bd11bb9"},
|
2583
|
+
{file = "wrapt-1.17.2-cp312-cp312-win32.whl", hash = "sha256:468090021f391fe0056ad3e807e3d9034e0fd01adcd3bdfba977b6fdf4213ea9"},
|
2584
|
+
{file = "wrapt-1.17.2-cp312-cp312-win_amd64.whl", hash = "sha256:ec89ed91f2fa8e3f52ae53cd3cf640d6feff92ba90d62236a81e4e563ac0e991"},
|
2585
|
+
{file = "wrapt-1.17.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6ed6ffac43aecfe6d86ec5b74b06a5be33d5bb9243d055141e8cabb12aa08125"},
|
2586
|
+
{file = "wrapt-1.17.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:35621ae4c00e056adb0009f8e86e28eb4a41a4bfa8f9bfa9fca7d343fe94f998"},
|
2587
|
+
{file = "wrapt-1.17.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a604bf7a053f8362d27eb9fefd2097f82600b856d5abe996d623babd067b1ab5"},
|
2588
|
+
{file = "wrapt-1.17.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cbabee4f083b6b4cd282f5b817a867cf0b1028c54d445b7ec7cfe6505057cf8"},
|
2589
|
+
{file = "wrapt-1.17.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49703ce2ddc220df165bd2962f8e03b84c89fee2d65e1c24a7defff6f988f4d6"},
|
2590
|
+
{file = "wrapt-1.17.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8112e52c5822fc4253f3901b676c55ddf288614dc7011634e2719718eaa187dc"},
|
2591
|
+
{file = "wrapt-1.17.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9fee687dce376205d9a494e9c121e27183b2a3df18037f89d69bd7b35bcf59e2"},
|
2592
|
+
{file = "wrapt-1.17.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:18983c537e04d11cf027fbb60a1e8dfd5190e2b60cc27bc0808e653e7b218d1b"},
|
2593
|
+
{file = "wrapt-1.17.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:703919b1633412ab54bcf920ab388735832fdcb9f9a00ae49387f0fe67dad504"},
|
2594
|
+
{file = "wrapt-1.17.2-cp313-cp313-win32.whl", hash = "sha256:abbb9e76177c35d4e8568e58650aa6926040d6a9f6f03435b7a522bf1c487f9a"},
|
2595
|
+
{file = "wrapt-1.17.2-cp313-cp313-win_amd64.whl", hash = "sha256:69606d7bb691b50a4240ce6b22ebb319c1cfb164e5f6569835058196e0f3a845"},
|
2596
|
+
{file = "wrapt-1.17.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:4a721d3c943dae44f8e243b380cb645a709ba5bd35d3ad27bc2ed947e9c68192"},
|
2597
|
+
{file = "wrapt-1.17.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:766d8bbefcb9e00c3ac3b000d9acc51f1b399513f44d77dfe0eb026ad7c9a19b"},
|
2598
|
+
{file = "wrapt-1.17.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e496a8ce2c256da1eb98bd15803a79bee00fc351f5dfb9ea82594a3f058309e0"},
|
2599
|
+
{file = "wrapt-1.17.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d615e4fe22f4ad3528448c193b218e077656ca9ccb22ce2cb20db730f8d306"},
|
2600
|
+
{file = "wrapt-1.17.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a5aaeff38654462bc4b09023918b7f21790efb807f54c000a39d41d69cf552cb"},
|
2601
|
+
{file = "wrapt-1.17.2-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a7d15bbd2bc99e92e39f49a04653062ee6085c0e18b3b7512a4f2fe91f2d681"},
|
2602
|
+
{file = "wrapt-1.17.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e3890b508a23299083e065f435a492b5435eba6e304a7114d2f919d400888cc6"},
|
2603
|
+
{file = "wrapt-1.17.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:8c8b293cd65ad716d13d8dd3624e42e5a19cc2a2f1acc74b30c2c13f15cb61a6"},
|
2604
|
+
{file = "wrapt-1.17.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4c82b8785d98cdd9fed4cac84d765d234ed3251bd6afe34cb7ac523cb93e8b4f"},
|
2605
|
+
{file = "wrapt-1.17.2-cp313-cp313t-win32.whl", hash = "sha256:13e6afb7fe71fe7485a4550a8844cc9ffbe263c0f1a1eea569bc7091d4898555"},
|
2606
|
+
{file = "wrapt-1.17.2-cp313-cp313t-win_amd64.whl", hash = "sha256:eaf675418ed6b3b31c7a989fd007fa7c3be66ce14e5c3b27336383604c9da85c"},
|
2607
|
+
{file = "wrapt-1.17.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5c803c401ea1c1c18de70a06a6f79fcc9c5acfc79133e9869e730ad7f8ad8ef9"},
|
2608
|
+
{file = "wrapt-1.17.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f917c1180fdb8623c2b75a99192f4025e412597c50b2ac870f156de8fb101119"},
|
2609
|
+
{file = "wrapt-1.17.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ecc840861360ba9d176d413a5489b9a0aff6d6303d7e733e2c4623cfa26904a6"},
|
2610
|
+
{file = "wrapt-1.17.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb87745b2e6dc56361bfde481d5a378dc314b252a98d7dd19a651a3fa58f24a9"},
|
2611
|
+
{file = "wrapt-1.17.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:58455b79ec2661c3600e65c0a716955adc2410f7383755d537584b0de41b1d8a"},
|
2612
|
+
{file = "wrapt-1.17.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4e42a40a5e164cbfdb7b386c966a588b1047558a990981ace551ed7e12ca9c2"},
|
2613
|
+
{file = "wrapt-1.17.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:91bd7d1773e64019f9288b7a5101f3ae50d3d8e6b1de7edee9c2ccc1d32f0c0a"},
|
2614
|
+
{file = "wrapt-1.17.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:bb90fb8bda722a1b9d48ac1e6c38f923ea757b3baf8ebd0c82e09c5c1a0e7a04"},
|
2615
|
+
{file = "wrapt-1.17.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:08e7ce672e35efa54c5024936e559469436f8b8096253404faeb54d2a878416f"},
|
2616
|
+
{file = "wrapt-1.17.2-cp38-cp38-win32.whl", hash = "sha256:410a92fefd2e0e10d26210e1dfb4a876ddaf8439ef60d6434f21ef8d87efc5b7"},
|
2617
|
+
{file = "wrapt-1.17.2-cp38-cp38-win_amd64.whl", hash = "sha256:95c658736ec15602da0ed73f312d410117723914a5c91a14ee4cdd72f1d790b3"},
|
2618
|
+
{file = "wrapt-1.17.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:99039fa9e6306880572915728d7f6c24a86ec57b0a83f6b2491e1d8ab0235b9a"},
|
2619
|
+
{file = "wrapt-1.17.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2696993ee1eebd20b8e4ee4356483c4cb696066ddc24bd70bcbb80fa56ff9061"},
|
2620
|
+
{file = "wrapt-1.17.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:612dff5db80beef9e649c6d803a8d50c409082f1fedc9dbcdfde2983b2025b82"},
|
2621
|
+
{file = "wrapt-1.17.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:62c2caa1585c82b3f7a7ab56afef7b3602021d6da34fbc1cf234ff139fed3cd9"},
|
2622
|
+
{file = "wrapt-1.17.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c958bcfd59bacc2d0249dcfe575e71da54f9dcf4a8bdf89c4cb9a68a1170d73f"},
|
2623
|
+
{file = "wrapt-1.17.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc78a84e2dfbc27afe4b2bd7c80c8db9bca75cc5b85df52bfe634596a1da846b"},
|
2624
|
+
{file = "wrapt-1.17.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:ba0f0eb61ef00ea10e00eb53a9129501f52385c44853dbd6c4ad3f403603083f"},
|
2625
|
+
{file = "wrapt-1.17.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1e1fe0e6ab7775fd842bc39e86f6dcfc4507ab0ffe206093e76d61cde37225c8"},
|
2626
|
+
{file = "wrapt-1.17.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c86563182421896d73858e08e1db93afdd2b947a70064b813d515d66549e15f9"},
|
2627
|
+
{file = "wrapt-1.17.2-cp39-cp39-win32.whl", hash = "sha256:f393cda562f79828f38a819f4788641ac7c4085f30f1ce1a68672baa686482bb"},
|
2628
|
+
{file = "wrapt-1.17.2-cp39-cp39-win_amd64.whl", hash = "sha256:36ccae62f64235cf8ddb682073a60519426fdd4725524ae38874adf72b5f2aeb"},
|
2629
|
+
{file = "wrapt-1.17.2-py3-none-any.whl", hash = "sha256:b18f2d1533a71f069c7f82d524a52599053d4c7166e9dd374ae2136b7f40f7c8"},
|
2630
|
+
{file = "wrapt-1.17.2.tar.gz", hash = "sha256:41388e9d4d1522446fe79d3213196bd9e3b301a336965b9e27ca2788ebd122f3"},
|
2478
2631
|
]
|
2479
2632
|
|
2480
2633
|
[[package]]
|
@@ -2583,20 +2736,133 @@ description = "Backport of pathlib-compatible object wrapper for zip files"
|
|
2583
2736
|
optional = false
|
2584
2737
|
python-versions = ">=3.9"
|
2585
2738
|
groups = ["main"]
|
2586
|
-
markers = "python_version < \"3.12\""
|
2739
|
+
markers = "sys_platform == \"win32\" or python_version < \"3.12\""
|
2587
2740
|
files = [
|
2588
2741
|
{file = "zipp-3.21.0-py3-none-any.whl", hash = "sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931"},
|
2589
2742
|
{file = "zipp-3.21.0.tar.gz", hash = "sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4"},
|
2590
2743
|
]
|
2591
2744
|
|
2592
2745
|
[package.extras]
|
2593
|
-
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"]
|
2746
|
+
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""]
|
2594
2747
|
cover = ["pytest-cov"]
|
2595
2748
|
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
2596
2749
|
enabler = ["pytest-enabler (>=2.2)"]
|
2597
|
-
test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"]
|
2750
|
+
test = ["big-O", "importlib-resources ; python_version < \"3.9\"", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"]
|
2598
2751
|
type = ["pytest-mypy"]
|
2599
2752
|
|
2753
|
+
[[package]]
|
2754
|
+
name = "zstandard"
|
2755
|
+
version = "0.23.0"
|
2756
|
+
description = "Zstandard bindings for Python"
|
2757
|
+
optional = false
|
2758
|
+
python-versions = ">=3.8"
|
2759
|
+
groups = ["main"]
|
2760
|
+
files = [
|
2761
|
+
{file = "zstandard-0.23.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bf0a05b6059c0528477fba9054d09179beb63744355cab9f38059548fedd46a9"},
|
2762
|
+
{file = "zstandard-0.23.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fc9ca1c9718cb3b06634c7c8dec57d24e9438b2aa9a0f02b8bb36bf478538880"},
|
2763
|
+
{file = "zstandard-0.23.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77da4c6bfa20dd5ea25cbf12c76f181a8e8cd7ea231c673828d0386b1740b8dc"},
|
2764
|
+
{file = "zstandard-0.23.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b2170c7e0367dde86a2647ed5b6f57394ea7f53545746104c6b09fc1f4223573"},
|
2765
|
+
{file = "zstandard-0.23.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c16842b846a8d2a145223f520b7e18b57c8f476924bda92aeee3a88d11cfc391"},
|
2766
|
+
{file = "zstandard-0.23.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:157e89ceb4054029a289fb504c98c6a9fe8010f1680de0201b3eb5dc20aa6d9e"},
|
2767
|
+
{file = "zstandard-0.23.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:203d236f4c94cd8379d1ea61db2fce20730b4c38d7f1c34506a31b34edc87bdd"},
|
2768
|
+
{file = "zstandard-0.23.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:dc5d1a49d3f8262be192589a4b72f0d03b72dcf46c51ad5852a4fdc67be7b9e4"},
|
2769
|
+
{file = "zstandard-0.23.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:752bf8a74412b9892f4e5b58f2f890a039f57037f52c89a740757ebd807f33ea"},
|
2770
|
+
{file = "zstandard-0.23.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80080816b4f52a9d886e67f1f96912891074903238fe54f2de8b786f86baded2"},
|
2771
|
+
{file = "zstandard-0.23.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:84433dddea68571a6d6bd4fbf8ff398236031149116a7fff6f777ff95cad3df9"},
|
2772
|
+
{file = "zstandard-0.23.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ab19a2d91963ed9e42b4e8d77cd847ae8381576585bad79dbd0a8837a9f6620a"},
|
2773
|
+
{file = "zstandard-0.23.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:59556bf80a7094d0cfb9f5e50bb2db27fefb75d5138bb16fb052b61b0e0eeeb0"},
|
2774
|
+
{file = "zstandard-0.23.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:27d3ef2252d2e62476389ca8f9b0cf2bbafb082a3b6bfe9d90cbcbb5529ecf7c"},
|
2775
|
+
{file = "zstandard-0.23.0-cp310-cp310-win32.whl", hash = "sha256:5d41d5e025f1e0bccae4928981e71b2334c60f580bdc8345f824e7c0a4c2a813"},
|
2776
|
+
{file = "zstandard-0.23.0-cp310-cp310-win_amd64.whl", hash = "sha256:519fbf169dfac1222a76ba8861ef4ac7f0530c35dd79ba5727014613f91613d4"},
|
2777
|
+
{file = "zstandard-0.23.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:34895a41273ad33347b2fc70e1bff4240556de3c46c6ea430a7ed91f9042aa4e"},
|
2778
|
+
{file = "zstandard-0.23.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:77ea385f7dd5b5676d7fd943292ffa18fbf5c72ba98f7d09fc1fb9e819b34c23"},
|
2779
|
+
{file = "zstandard-0.23.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:983b6efd649723474f29ed42e1467f90a35a74793437d0bc64a5bf482bedfa0a"},
|
2780
|
+
{file = "zstandard-0.23.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80a539906390591dd39ebb8d773771dc4db82ace6372c4d41e2d293f8e32b8db"},
|
2781
|
+
{file = "zstandard-0.23.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:445e4cb5048b04e90ce96a79b4b63140e3f4ab5f662321975679b5f6360b90e2"},
|
2782
|
+
{file = "zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd30d9c67d13d891f2360b2a120186729c111238ac63b43dbd37a5a40670b8ca"},
|
2783
|
+
{file = "zstandard-0.23.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d20fd853fbb5807c8e84c136c278827b6167ded66c72ec6f9a14b863d809211c"},
|
2784
|
+
{file = "zstandard-0.23.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ed1708dbf4d2e3a1c5c69110ba2b4eb6678262028afd6c6fbcc5a8dac9cda68e"},
|
2785
|
+
{file = "zstandard-0.23.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:be9b5b8659dff1f913039c2feee1aca499cfbc19e98fa12bc85e037c17ec6ca5"},
|
2786
|
+
{file = "zstandard-0.23.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:65308f4b4890aa12d9b6ad9f2844b7ee42c7f7a4fd3390425b242ffc57498f48"},
|
2787
|
+
{file = "zstandard-0.23.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:98da17ce9cbf3bfe4617e836d561e433f871129e3a7ac16d6ef4c680f13a839c"},
|
2788
|
+
{file = "zstandard-0.23.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:8ed7d27cb56b3e058d3cf684d7200703bcae623e1dcc06ed1e18ecda39fee003"},
|
2789
|
+
{file = "zstandard-0.23.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:b69bb4f51daf461b15e7b3db033160937d3ff88303a7bc808c67bbc1eaf98c78"},
|
2790
|
+
{file = "zstandard-0.23.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:034b88913ecc1b097f528e42b539453fa82c3557e414b3de9d5632c80439a473"},
|
2791
|
+
{file = "zstandard-0.23.0-cp311-cp311-win32.whl", hash = "sha256:f2d4380bf5f62daabd7b751ea2339c1a21d1c9463f1feb7fc2bdcea2c29c3160"},
|
2792
|
+
{file = "zstandard-0.23.0-cp311-cp311-win_amd64.whl", hash = "sha256:62136da96a973bd2557f06ddd4e8e807f9e13cbb0bfb9cc06cfe6d98ea90dfe0"},
|
2793
|
+
{file = "zstandard-0.23.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b4567955a6bc1b20e9c31612e615af6b53733491aeaa19a6b3b37f3b65477094"},
|
2794
|
+
{file = "zstandard-0.23.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1e172f57cd78c20f13a3415cc8dfe24bf388614324d25539146594c16d78fcc8"},
|
2795
|
+
{file = "zstandard-0.23.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b0e166f698c5a3e914947388c162be2583e0c638a4703fc6a543e23a88dea3c1"},
|
2796
|
+
{file = "zstandard-0.23.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:12a289832e520c6bd4dcaad68e944b86da3bad0d339ef7989fb7e88f92e96072"},
|
2797
|
+
{file = "zstandard-0.23.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d50d31bfedd53a928fed6707b15a8dbeef011bb6366297cc435accc888b27c20"},
|
2798
|
+
{file = "zstandard-0.23.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72c68dda124a1a138340fb62fa21b9bf4848437d9ca60bd35db36f2d3345f373"},
|
2799
|
+
{file = "zstandard-0.23.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:53dd9d5e3d29f95acd5de6802e909ada8d8d8cfa37a3ac64836f3bc4bc5512db"},
|
2800
|
+
{file = "zstandard-0.23.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:6a41c120c3dbc0d81a8e8adc73312d668cd34acd7725f036992b1b72d22c1772"},
|
2801
|
+
{file = "zstandard-0.23.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:40b33d93c6eddf02d2c19f5773196068d875c41ca25730e8288e9b672897c105"},
|
2802
|
+
{file = "zstandard-0.23.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9206649ec587e6b02bd124fb7799b86cddec350f6f6c14bc82a2b70183e708ba"},
|
2803
|
+
{file = "zstandard-0.23.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:76e79bc28a65f467e0409098fa2c4376931fd3207fbeb6b956c7c476d53746dd"},
|
2804
|
+
{file = "zstandard-0.23.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:66b689c107857eceabf2cf3d3fc699c3c0fe8ccd18df2219d978c0283e4c508a"},
|
2805
|
+
{file = "zstandard-0.23.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9c236e635582742fee16603042553d276cca506e824fa2e6489db04039521e90"},
|
2806
|
+
{file = "zstandard-0.23.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a8fffdbd9d1408006baaf02f1068d7dd1f016c6bcb7538682622c556e7b68e35"},
|
2807
|
+
{file = "zstandard-0.23.0-cp312-cp312-win32.whl", hash = "sha256:dc1d33abb8a0d754ea4763bad944fd965d3d95b5baef6b121c0c9013eaf1907d"},
|
2808
|
+
{file = "zstandard-0.23.0-cp312-cp312-win_amd64.whl", hash = "sha256:64585e1dba664dc67c7cdabd56c1e5685233fbb1fc1966cfba2a340ec0dfff7b"},
|
2809
|
+
{file = "zstandard-0.23.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:576856e8594e6649aee06ddbfc738fec6a834f7c85bf7cadd1c53d4a58186ef9"},
|
2810
|
+
{file = "zstandard-0.23.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38302b78a850ff82656beaddeb0bb989a0322a8bbb1bf1ab10c17506681d772a"},
|
2811
|
+
{file = "zstandard-0.23.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2240ddc86b74966c34554c49d00eaafa8200a18d3a5b6ffbf7da63b11d74ee2"},
|
2812
|
+
{file = "zstandard-0.23.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ef230a8fd217a2015bc91b74f6b3b7d6522ba48be29ad4ea0ca3a3775bf7dd5"},
|
2813
|
+
{file = "zstandard-0.23.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:774d45b1fac1461f48698a9d4b5fa19a69d47ece02fa469825b442263f04021f"},
|
2814
|
+
{file = "zstandard-0.23.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f77fa49079891a4aab203d0b1744acc85577ed16d767b52fc089d83faf8d8ed"},
|
2815
|
+
{file = "zstandard-0.23.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ac184f87ff521f4840e6ea0b10c0ec90c6b1dcd0bad2f1e4a9a1b4fa177982ea"},
|
2816
|
+
{file = "zstandard-0.23.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:c363b53e257246a954ebc7c488304b5592b9c53fbe74d03bc1c64dda153fb847"},
|
2817
|
+
{file = "zstandard-0.23.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:e7792606d606c8df5277c32ccb58f29b9b8603bf83b48639b7aedf6df4fe8171"},
|
2818
|
+
{file = "zstandard-0.23.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a0817825b900fcd43ac5d05b8b3079937073d2b1ff9cf89427590718b70dd840"},
|
2819
|
+
{file = "zstandard-0.23.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:9da6bc32faac9a293ddfdcb9108d4b20416219461e4ec64dfea8383cac186690"},
|
2820
|
+
{file = "zstandard-0.23.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:fd7699e8fd9969f455ef2926221e0233f81a2542921471382e77a9e2f2b57f4b"},
|
2821
|
+
{file = "zstandard-0.23.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d477ed829077cd945b01fc3115edd132c47e6540ddcd96ca169facff28173057"},
|
2822
|
+
{file = "zstandard-0.23.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa6ce8b52c5987b3e34d5674b0ab529a4602b632ebab0a93b07bfb4dfc8f8a33"},
|
2823
|
+
{file = "zstandard-0.23.0-cp313-cp313-win32.whl", hash = "sha256:a9b07268d0c3ca5c170a385a0ab9fb7fdd9f5fd866be004c4ea39e44edce47dd"},
|
2824
|
+
{file = "zstandard-0.23.0-cp313-cp313-win_amd64.whl", hash = "sha256:f3513916e8c645d0610815c257cbfd3242adfd5c4cfa78be514e5a3ebb42a41b"},
|
2825
|
+
{file = "zstandard-0.23.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2ef3775758346d9ac6214123887d25c7061c92afe1f2b354f9388e9e4d48acfc"},
|
2826
|
+
{file = "zstandard-0.23.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4051e406288b8cdbb993798b9a45c59a4896b6ecee2f875424ec10276a895740"},
|
2827
|
+
{file = "zstandard-0.23.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2d1a054f8f0a191004675755448d12be47fa9bebbcffa3cdf01db19f2d30a54"},
|
2828
|
+
{file = "zstandard-0.23.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f83fa6cae3fff8e98691248c9320356971b59678a17f20656a9e59cd32cee6d8"},
|
2829
|
+
{file = "zstandard-0.23.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:32ba3b5ccde2d581b1e6aa952c836a6291e8435d788f656fe5976445865ae045"},
|
2830
|
+
{file = "zstandard-0.23.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2f146f50723defec2975fb7e388ae3a024eb7151542d1599527ec2aa9cacb152"},
|
2831
|
+
{file = "zstandard-0.23.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1bfe8de1da6d104f15a60d4a8a768288f66aa953bbe00d027398b93fb9680b26"},
|
2832
|
+
{file = "zstandard-0.23.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:29a2bc7c1b09b0af938b7a8343174b987ae021705acabcbae560166567f5a8db"},
|
2833
|
+
{file = "zstandard-0.23.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:61f89436cbfede4bc4e91b4397eaa3e2108ebe96d05e93d6ccc95ab5714be512"},
|
2834
|
+
{file = "zstandard-0.23.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:53ea7cdc96c6eb56e76bb06894bcfb5dfa93b7adcf59d61c6b92674e24e2dd5e"},
|
2835
|
+
{file = "zstandard-0.23.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:a4ae99c57668ca1e78597d8b06d5af837f377f340f4cce993b551b2d7731778d"},
|
2836
|
+
{file = "zstandard-0.23.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:379b378ae694ba78cef921581ebd420c938936a153ded602c4fea612b7eaa90d"},
|
2837
|
+
{file = "zstandard-0.23.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:50a80baba0285386f97ea36239855f6020ce452456605f262b2d33ac35c7770b"},
|
2838
|
+
{file = "zstandard-0.23.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:61062387ad820c654b6a6b5f0b94484fa19515e0c5116faf29f41a6bc91ded6e"},
|
2839
|
+
{file = "zstandard-0.23.0-cp38-cp38-win32.whl", hash = "sha256:b8c0bd73aeac689beacd4e7667d48c299f61b959475cdbb91e7d3d88d27c56b9"},
|
2840
|
+
{file = "zstandard-0.23.0-cp38-cp38-win_amd64.whl", hash = "sha256:a05e6d6218461eb1b4771d973728f0133b2a4613a6779995df557f70794fd60f"},
|
2841
|
+
{file = "zstandard-0.23.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3aa014d55c3af933c1315eb4bb06dd0459661cc0b15cd61077afa6489bec63bb"},
|
2842
|
+
{file = "zstandard-0.23.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a7f0804bb3799414af278e9ad51be25edf67f78f916e08afdb983e74161b916"},
|
2843
|
+
{file = "zstandard-0.23.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb2b1ecfef1e67897d336de3a0e3f52478182d6a47eda86cbd42504c5cbd009a"},
|
2844
|
+
{file = "zstandard-0.23.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:837bb6764be6919963ef41235fd56a6486b132ea64afe5fafb4cb279ac44f259"},
|
2845
|
+
{file = "zstandard-0.23.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1516c8c37d3a053b01c1c15b182f3b5f5eef19ced9b930b684a73bad121addf4"},
|
2846
|
+
{file = "zstandard-0.23.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48ef6a43b1846f6025dde6ed9fee0c24e1149c1c25f7fb0a0585572b2f3adc58"},
|
2847
|
+
{file = "zstandard-0.23.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11e3bf3c924853a2d5835b24f03eeba7fc9b07d8ca499e247e06ff5676461a15"},
|
2848
|
+
{file = "zstandard-0.23.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2fb4535137de7e244c230e24f9d1ec194f61721c86ebea04e1581d9d06ea1269"},
|
2849
|
+
{file = "zstandard-0.23.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8c24f21fa2af4bb9f2c492a86fe0c34e6d2c63812a839590edaf177b7398f700"},
|
2850
|
+
{file = "zstandard-0.23.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a8c86881813a78a6f4508ef9daf9d4995b8ac2d147dcb1a450448941398091c9"},
|
2851
|
+
{file = "zstandard-0.23.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fe3b385d996ee0822fd46528d9f0443b880d4d05528fd26a9119a54ec3f91c69"},
|
2852
|
+
{file = "zstandard-0.23.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:82d17e94d735c99621bf8ebf9995f870a6b3e6d14543b99e201ae046dfe7de70"},
|
2853
|
+
{file = "zstandard-0.23.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:c7c517d74bea1a6afd39aa612fa025e6b8011982a0897768a2f7c8ab4ebb78a2"},
|
2854
|
+
{file = "zstandard-0.23.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1fd7e0f1cfb70eb2f95a19b472ee7ad6d9a0a992ec0ae53286870c104ca939e5"},
|
2855
|
+
{file = "zstandard-0.23.0-cp39-cp39-win32.whl", hash = "sha256:43da0f0092281bf501f9c5f6f3b4c975a8a0ea82de49ba3f7100e64d422a1274"},
|
2856
|
+
{file = "zstandard-0.23.0-cp39-cp39-win_amd64.whl", hash = "sha256:f8346bfa098532bc1fb6c7ef06783e969d87a99dd1d2a5a18a892c1d7a643c58"},
|
2857
|
+
{file = "zstandard-0.23.0.tar.gz", hash = "sha256:b2d8c62d08e7255f68f7a740bae85b3c9b8e5466baa9cbf7f57f1cde0ac6bc09"},
|
2858
|
+
]
|
2859
|
+
|
2860
|
+
[package.dependencies]
|
2861
|
+
cffi = {version = ">=1.11", markers = "platform_python_implementation == \"PyPy\""}
|
2862
|
+
|
2863
|
+
[package.extras]
|
2864
|
+
cffi = ["cffi (>=1.11)"]
|
2865
|
+
|
2600
2866
|
[metadata]
|
2601
2867
|
lock-version = "2.1"
|
2602
2868
|
python-versions = ">=3.9,<4.0"
|