micropython-stubber 1.17.5__py3-none-any.whl → 1.19.0__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.17.5.dist-info → micropython_stubber-1.19.0.dist-info}/METADATA +7 -6
- {micropython_stubber-1.17.5.dist-info → micropython_stubber-1.19.0.dist-info}/RECORD +71 -52
- mpflash/README.md +22 -3
- mpflash/libusb_flash.ipynb +203 -0
- mpflash/mpflash/ask_input.py +234 -0
- mpflash/mpflash/cli_download.py +107 -0
- mpflash/mpflash/cli_flash.py +165 -0
- mpflash/mpflash/cli_group.py +41 -8
- mpflash/mpflash/cli_list.py +41 -0
- mpflash/mpflash/cli_main.py +13 -8
- mpflash/mpflash/common.py +33 -122
- mpflash/mpflash/config.py +9 -0
- mpflash/mpflash/{downloader.py → download.py} +112 -120
- mpflash/mpflash/downloaded.py +108 -0
- mpflash/mpflash/errors.py +5 -0
- mpflash/mpflash/flash.py +69 -0
- mpflash/mpflash/flash_esp.py +17 -23
- mpflash/mpflash/flash_stm32.py +16 -113
- mpflash/mpflash/flash_stm32_cube.py +111 -0
- mpflash/mpflash/flash_stm32_dfu.py +101 -0
- mpflash/mpflash/flash_uf2.py +8 -8
- mpflash/mpflash/flash_uf2_linux.py +25 -12
- mpflash/mpflash/flash_uf2_windows.py +24 -12
- mpflash/mpflash/list.py +34 -37
- mpflash/mpflash/logger.py +12 -13
- mpflash/mpflash/mpboard_id/__init__.py +96 -0
- mpflash/mpflash/mpboard_id/board_id.py +63 -0
- mpflash/mpflash/mpboard_id/board_info.csv +2213 -0
- mpflash/mpflash/mpboard_id/board_info.json +19910 -0
- mpflash/mpflash/mpremoteboard/__init__.py +208 -0
- mpflash/mpflash/mpremoteboard/mpy_fw_info.py +141 -0
- {stubber/bulk → mpflash/mpflash/mpremoteboard}/runner.py +22 -5
- mpflash/mpflash/vendor/dfu.py +164 -0
- mpflash/mpflash/vendor/pydfu.py +605 -0
- mpflash/mpflash/vendor/readme.md +3 -0
- mpflash/mpflash/vendor/versions.py +113 -0
- mpflash/mpflash/worklist.py +147 -0
- mpflash/poetry.lock +411 -595
- mpflash/pyproject.toml +24 -8
- mpflash/stm32_udev_rules.md +63 -0
- stubber/__init__.py +1 -1
- stubber/basicgit.py +1 -0
- stubber/board/createstubs.py +10 -4
- stubber/board/createstubs_db.py +11 -5
- stubber/board/createstubs_db_min.py +61 -58
- stubber/board/createstubs_db_mpy.mpy +0 -0
- stubber/board/createstubs_mem.py +11 -5
- stubber/board/createstubs_mem_min.py +56 -53
- stubber/board/createstubs_mem_mpy.mpy +0 -0
- stubber/board/createstubs_min.py +54 -51
- stubber/board/createstubs_mpy.mpy +0 -0
- stubber/bulk/mcu_stubber.py +9 -5
- stubber/codemod/_partials/db_main.py +14 -25
- stubber/codemod/_partials/lvgl_main.py +2 -2
- stubber/codemod/board.py +10 -3
- stubber/commands/clone_cmd.py +7 -7
- stubber/commands/config_cmd.py +3 -0
- stubber/freeze/get_frozen.py +0 -2
- stubber/publish/candidates.py +1 -1
- stubber/publish/package.py +1 -1
- stubber/publish/pathnames.py +1 -1
- stubber/publish/stubpackage.py +1 -0
- stubber/rst/lookup.py +1 -1
- stubber/tools/manifestfile.py +5 -3
- stubber/utils/config.py +26 -36
- stubber/utils/repos.py +2 -2
- stubber/utils/versions.py +1 -0
- mpflash/mpflash/flasher.py +0 -287
- stubber/bulk/board_id.py +0 -40
- stubber/bulk/mpremoteboard.py +0 -141
- {micropython_stubber-1.17.5.dist-info → micropython_stubber-1.19.0.dist-info}/LICENSE +0 -0
- {micropython_stubber-1.17.5.dist-info → micropython_stubber-1.19.0.dist-info}/WHEEL +0 -0
- {micropython_stubber-1.17.5.dist-info → micropython_stubber-1.19.0.dist-info}/entry_points.txt +0 -0
- /mpflash/mpflash/{uf2_boardid.py → flash_uf2_boardid.py} +0 -0
mpflash/poetry.lock
CHANGED
@@ -1,30 +1,16 @@
|
|
1
1
|
# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand.
|
2
2
|
|
3
3
|
[[package]]
|
4
|
-
name = "
|
5
|
-
version = "
|
6
|
-
description = "
|
4
|
+
name = "ansicon"
|
5
|
+
version = "1.89.0"
|
6
|
+
description = "Python wrapper for loading Jason Hood's ANSICON"
|
7
7
|
optional = false
|
8
|
-
python-versions = "
|
9
|
-
files = [
|
10
|
-
{file = "annotated_types-0.6.0-py3-none-any.whl", hash = "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43"},
|
11
|
-
{file = "annotated_types-0.6.0.tar.gz", hash = "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d"},
|
12
|
-
]
|
13
|
-
|
14
|
-
[[package]]
|
15
|
-
name = "argcomplete"
|
16
|
-
version = "3.2.2"
|
17
|
-
description = "Bash tab completion for argparse"
|
18
|
-
optional = false
|
19
|
-
python-versions = ">=3.8"
|
8
|
+
python-versions = "*"
|
20
9
|
files = [
|
21
|
-
{file = "
|
22
|
-
{file = "
|
10
|
+
{file = "ansicon-1.89.0-py2.py3-none-any.whl", hash = "sha256:f1def52d17f65c2c9682cf8370c03f541f410c1752d6a14029f97318e4b9dfec"},
|
11
|
+
{file = "ansicon-1.89.0.tar.gz", hash = "sha256:e4d039def5768a47e4afec8e89e83ec3ae5a26bf00ad851f914d1240b444d2b1"},
|
23
12
|
]
|
24
13
|
|
25
|
-
[package.extras]
|
26
|
-
test = ["coverage", "mypy", "pexpect", "ruff", "wheel"]
|
27
|
-
|
28
14
|
[[package]]
|
29
15
|
name = "argparse-addons"
|
30
16
|
version = "0.12.0"
|
@@ -55,21 +41,6 @@ tests = ["attrs[tests-no-zope]", "zope-interface"]
|
|
55
41
|
tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"]
|
56
42
|
tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"]
|
57
43
|
|
58
|
-
[[package]]
|
59
|
-
name = "autoflake"
|
60
|
-
version = "2.3.0"
|
61
|
-
description = "Removes unused imports and unused variables"
|
62
|
-
optional = false
|
63
|
-
python-versions = ">=3.8"
|
64
|
-
files = [
|
65
|
-
{file = "autoflake-2.3.0-py3-none-any.whl", hash = "sha256:79a51eb8c0744759d2efe052455ab20aa6a314763510c3fd897499a402126327"},
|
66
|
-
{file = "autoflake-2.3.0.tar.gz", hash = "sha256:8c2011fa34701b9d7dcf05b9873bc4859d4fce4e62dfea90dffefd1576f5f01d"},
|
67
|
-
]
|
68
|
-
|
69
|
-
[package.dependencies]
|
70
|
-
pyflakes = ">=3.0.0"
|
71
|
-
tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""}
|
72
|
-
|
73
44
|
[[package]]
|
74
45
|
name = "beautifulsoup4"
|
75
46
|
version = "4.12.3"
|
@@ -253,39 +224,20 @@ files = [
|
|
253
224
|
bitarray = ">=2.8.0,<3.0.0"
|
254
225
|
|
255
226
|
[[package]]
|
256
|
-
name = "
|
257
|
-
version = "
|
258
|
-
description = "
|
227
|
+
name = "blessed"
|
228
|
+
version = "1.20.0"
|
229
|
+
description = "Easy, practical library for making terminal apps, by providing an elegant, well-documented interface to Colors, Keyboard input, and screen Positioning capabilities."
|
259
230
|
optional = false
|
260
|
-
python-versions = ">=
|
231
|
+
python-versions = ">=2.7"
|
261
232
|
files = [
|
262
|
-
{file = "
|
263
|
-
{file = "
|
264
|
-
{file = "black-22.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d30b212bffeb1e252b31dd269dfae69dd17e06d92b87ad26e23890f3efea366f"},
|
265
|
-
{file = "black-22.12.0-cp311-cp311-win_amd64.whl", hash = "sha256:7412e75863aa5c5411886804678b7d083c7c28421210180d67dfd8cf1221e1f4"},
|
266
|
-
{file = "black-22.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c116eed0efb9ff870ded8b62fe9f28dd61ef6e9ddd28d83d7d264a38417dcee2"},
|
267
|
-
{file = "black-22.12.0-cp37-cp37m-win_amd64.whl", hash = "sha256:1f58cbe16dfe8c12b7434e50ff889fa479072096d79f0a7f25e4ab8e94cd8350"},
|
268
|
-
{file = "black-22.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77d86c9f3db9b1bf6761244bc0b3572a546f5fe37917a044e02f3166d5aafa7d"},
|
269
|
-
{file = "black-22.12.0-cp38-cp38-win_amd64.whl", hash = "sha256:82d9fe8fee3401e02e79767016b4907820a7dc28d70d137eb397b92ef3cc5bfc"},
|
270
|
-
{file = "black-22.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:101c69b23df9b44247bd88e1d7e90154336ac4992502d4197bdac35dd7ee3320"},
|
271
|
-
{file = "black-22.12.0-cp39-cp39-win_amd64.whl", hash = "sha256:559c7a1ba9a006226f09e4916060982fd27334ae1998e7a38b3f33a37f7a2148"},
|
272
|
-
{file = "black-22.12.0-py3-none-any.whl", hash = "sha256:436cc9167dd28040ad90d3b404aec22cedf24a6e4d7de221bec2730ec0c97bcf"},
|
273
|
-
{file = "black-22.12.0.tar.gz", hash = "sha256:229351e5a18ca30f447bf724d007f890f97e13af070bb6ad4c0a441cd7596a2f"},
|
233
|
+
{file = "blessed-1.20.0-py2.py3-none-any.whl", hash = "sha256:0c542922586a265e699188e52d5f5ac5ec0dd517e5a1041d90d2bbf23f906058"},
|
234
|
+
{file = "blessed-1.20.0.tar.gz", hash = "sha256:2cdd67f8746e048f00df47a2880f4d6acbcdb399031b604e34ba8f71d5787680"},
|
274
235
|
]
|
275
236
|
|
276
237
|
[package.dependencies]
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
platformdirs = ">=2"
|
281
|
-
tomli = {version = ">=1.1.0", markers = "python_full_version < \"3.11.0a7\""}
|
282
|
-
typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}
|
283
|
-
|
284
|
-
[package.extras]
|
285
|
-
colorama = ["colorama (>=0.4.3)"]
|
286
|
-
d = ["aiohttp (>=3.7.4)"]
|
287
|
-
jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
|
288
|
-
uvloop = ["uvloop (>=0.15.2)"]
|
238
|
+
jinxed = {version = ">=1.1.0", markers = "platform_system == \"Windows\""}
|
239
|
+
six = ">=1.9.0"
|
240
|
+
wcwidth = ">=0.1.4"
|
289
241
|
|
290
242
|
[[package]]
|
291
243
|
name = "blkinfo"
|
@@ -297,17 +249,6 @@ files = [
|
|
297
249
|
{file = "blkinfo-0.2.0.tar.gz", hash = "sha256:322a906595f78832d6725ac74a0b9fd2794df3388584d9f05c1a2f8e19324851"},
|
298
250
|
]
|
299
251
|
|
300
|
-
[[package]]
|
301
|
-
name = "cachetools"
|
302
|
-
version = "5.3.2"
|
303
|
-
description = "Extensible memoizing collections and decorators"
|
304
|
-
optional = false
|
305
|
-
python-versions = ">=3.7"
|
306
|
-
files = [
|
307
|
-
{file = "cachetools-5.3.2-py3-none-any.whl", hash = "sha256:861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1"},
|
308
|
-
{file = "cachetools-5.3.2.tar.gz", hash = "sha256:086ee420196f7b2ab9ca2db2520aca326318b68fe5ba8bc4d49cca91add450f2"},
|
309
|
-
]
|
310
|
-
|
311
252
|
[[package]]
|
312
253
|
name = "certifi"
|
313
254
|
version = "2024.2.2"
|
@@ -507,45 +448,109 @@ files = [
|
|
507
448
|
{file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
|
508
449
|
]
|
509
450
|
|
451
|
+
[[package]]
|
452
|
+
name = "coverage"
|
453
|
+
version = "7.4.4"
|
454
|
+
description = "Code coverage measurement for Python"
|
455
|
+
optional = false
|
456
|
+
python-versions = ">=3.8"
|
457
|
+
files = [
|
458
|
+
{file = "coverage-7.4.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e0be5efd5127542ef31f165de269f77560d6cdef525fffa446de6f7e9186cfb2"},
|
459
|
+
{file = "coverage-7.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ccd341521be3d1b3daeb41960ae94a5e87abe2f46f17224ba5d6f2b8398016cf"},
|
460
|
+
{file = "coverage-7.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09fa497a8ab37784fbb20ab699c246053ac294d13fc7eb40ec007a5043ec91f8"},
|
461
|
+
{file = "coverage-7.4.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b1a93009cb80730c9bca5d6d4665494b725b6e8e157c1cb7f2db5b4b122ea562"},
|
462
|
+
{file = "coverage-7.4.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:690db6517f09336559dc0b5f55342df62370a48f5469fabf502db2c6d1cffcd2"},
|
463
|
+
{file = "coverage-7.4.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:09c3255458533cb76ef55da8cc49ffab9e33f083739c8bd4f58e79fecfe288f7"},
|
464
|
+
{file = "coverage-7.4.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8ce1415194b4a6bd0cdcc3a1dfbf58b63f910dcb7330fe15bdff542c56949f87"},
|
465
|
+
{file = "coverage-7.4.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b91cbc4b195444e7e258ba27ac33769c41b94967919f10037e6355e998af255c"},
|
466
|
+
{file = "coverage-7.4.4-cp310-cp310-win32.whl", hash = "sha256:598825b51b81c808cb6f078dcb972f96af96b078faa47af7dfcdf282835baa8d"},
|
467
|
+
{file = "coverage-7.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:09ef9199ed6653989ebbcaacc9b62b514bb63ea2f90256e71fea3ed74bd8ff6f"},
|
468
|
+
{file = "coverage-7.4.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0f9f50e7ef2a71e2fae92774c99170eb8304e3fdf9c8c3c7ae9bab3e7229c5cf"},
|
469
|
+
{file = "coverage-7.4.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:623512f8ba53c422fcfb2ce68362c97945095b864cda94a92edbaf5994201083"},
|
470
|
+
{file = "coverage-7.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0513b9508b93da4e1716744ef6ebc507aff016ba115ffe8ecff744d1322a7b63"},
|
471
|
+
{file = "coverage-7.4.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40209e141059b9370a2657c9b15607815359ab3ef9918f0196b6fccce8d3230f"},
|
472
|
+
{file = "coverage-7.4.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a2b2b78c78293782fd3767d53e6474582f62443d0504b1554370bde86cc8227"},
|
473
|
+
{file = "coverage-7.4.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:73bfb9c09951125d06ee473bed216e2c3742f530fc5acc1383883125de76d9cd"},
|
474
|
+
{file = "coverage-7.4.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1f384c3cc76aeedce208643697fb3e8437604b512255de6d18dae3f27655a384"},
|
475
|
+
{file = "coverage-7.4.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:54eb8d1bf7cacfbf2a3186019bcf01d11c666bd495ed18717162f7eb1e9dd00b"},
|
476
|
+
{file = "coverage-7.4.4-cp311-cp311-win32.whl", hash = "sha256:cac99918c7bba15302a2d81f0312c08054a3359eaa1929c7e4b26ebe41e9b286"},
|
477
|
+
{file = "coverage-7.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:b14706df8b2de49869ae03a5ccbc211f4041750cd4a66f698df89d44f4bd30ec"},
|
478
|
+
{file = "coverage-7.4.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:201bef2eea65e0e9c56343115ba3814e896afe6d36ffd37bab783261db430f76"},
|
479
|
+
{file = "coverage-7.4.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:41c9c5f3de16b903b610d09650e5e27adbfa7f500302718c9ffd1c12cf9d6818"},
|
480
|
+
{file = "coverage-7.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d898fe162d26929b5960e4e138651f7427048e72c853607f2b200909794ed978"},
|
481
|
+
{file = "coverage-7.4.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ea79bb50e805cd6ac058dfa3b5c8f6c040cb87fe83de10845857f5535d1db70"},
|
482
|
+
{file = "coverage-7.4.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce4b94265ca988c3f8e479e741693d143026632672e3ff924f25fab50518dd51"},
|
483
|
+
{file = "coverage-7.4.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:00838a35b882694afda09f85e469c96367daa3f3f2b097d846a7216993d37f4c"},
|
484
|
+
{file = "coverage-7.4.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:fdfafb32984684eb03c2d83e1e51f64f0906b11e64482df3c5db936ce3839d48"},
|
485
|
+
{file = "coverage-7.4.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:69eb372f7e2ece89f14751fbcbe470295d73ed41ecd37ca36ed2eb47512a6ab9"},
|
486
|
+
{file = "coverage-7.4.4-cp312-cp312-win32.whl", hash = "sha256:137eb07173141545e07403cca94ab625cc1cc6bc4c1e97b6e3846270e7e1fea0"},
|
487
|
+
{file = "coverage-7.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:d71eec7d83298f1af3326ce0ff1d0ea83c7cb98f72b577097f9083b20bdaf05e"},
|
488
|
+
{file = "coverage-7.4.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d5ae728ff3b5401cc320d792866987e7e7e880e6ebd24433b70a33b643bb0384"},
|
489
|
+
{file = "coverage-7.4.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cc4f1358cb0c78edef3ed237ef2c86056206bb8d9140e73b6b89fbcfcbdd40e1"},
|
490
|
+
{file = "coverage-7.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8130a2aa2acb8788e0b56938786c33c7c98562697bf9f4c7d6e8e5e3a0501e4a"},
|
491
|
+
{file = "coverage-7.4.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cf271892d13e43bc2b51e6908ec9a6a5094a4df1d8af0bfc360088ee6c684409"},
|
492
|
+
{file = "coverage-7.4.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4cdc86d54b5da0df6d3d3a2f0b710949286094c3a6700c21e9015932b81447e"},
|
493
|
+
{file = "coverage-7.4.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ae71e7ddb7a413dd60052e90528f2f65270aad4b509563af6d03d53e979feafd"},
|
494
|
+
{file = "coverage-7.4.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:38dd60d7bf242c4ed5b38e094baf6401faa114fc09e9e6632374388a404f98e7"},
|
495
|
+
{file = "coverage-7.4.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:aa5b1c1bfc28384f1f53b69a023d789f72b2e0ab1b3787aae16992a7ca21056c"},
|
496
|
+
{file = "coverage-7.4.4-cp38-cp38-win32.whl", hash = "sha256:dfa8fe35a0bb90382837b238fff375de15f0dcdb9ae68ff85f7a63649c98527e"},
|
497
|
+
{file = "coverage-7.4.4-cp38-cp38-win_amd64.whl", hash = "sha256:b2991665420a803495e0b90a79233c1433d6ed77ef282e8e152a324bbbc5e0c8"},
|
498
|
+
{file = "coverage-7.4.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3b799445b9f7ee8bf299cfaed6f5b226c0037b74886a4e11515e569b36fe310d"},
|
499
|
+
{file = "coverage-7.4.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b4d33f418f46362995f1e9d4f3a35a1b6322cb959c31d88ae56b0298e1c22357"},
|
500
|
+
{file = "coverage-7.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aadacf9a2f407a4688d700e4ebab33a7e2e408f2ca04dbf4aef17585389eff3e"},
|
501
|
+
{file = "coverage-7.4.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c95949560050d04d46b919301826525597f07b33beba6187d04fa64d47ac82e"},
|
502
|
+
{file = "coverage-7.4.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff7687ca3d7028d8a5f0ebae95a6e4827c5616b31a4ee1192bdfde697db110d4"},
|
503
|
+
{file = "coverage-7.4.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5fc1de20b2d4a061b3df27ab9b7c7111e9a710f10dc2b84d33a4ab25065994ec"},
|
504
|
+
{file = "coverage-7.4.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c74880fc64d4958159fbd537a091d2a585448a8f8508bf248d72112723974cbd"},
|
505
|
+
{file = "coverage-7.4.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:742a76a12aa45b44d236815d282b03cfb1de3b4323f3e4ec933acfae08e54ade"},
|
506
|
+
{file = "coverage-7.4.4-cp39-cp39-win32.whl", hash = "sha256:d89d7b2974cae412400e88f35d86af72208e1ede1a541954af5d944a8ba46c57"},
|
507
|
+
{file = "coverage-7.4.4-cp39-cp39-win_amd64.whl", hash = "sha256:9ca28a302acb19b6af89e90f33ee3e1906961f94b54ea37de6737b7ca9d8827c"},
|
508
|
+
{file = "coverage-7.4.4-pp38.pp39.pp310-none-any.whl", hash = "sha256:b2c5edc4ac10a7ef6605a966c58929ec6c1bd0917fb8c15cb3363f65aa40e677"},
|
509
|
+
{file = "coverage-7.4.4.tar.gz", hash = "sha256:c901df83d097649e257e803be22592aedfd5182f07b3cc87d640bbb9afd50f49"},
|
510
|
+
]
|
511
|
+
|
512
|
+
[package.extras]
|
513
|
+
toml = ["tomli"]
|
514
|
+
|
510
515
|
[[package]]
|
511
516
|
name = "cryptography"
|
512
|
-
version = "42.0.
|
517
|
+
version = "42.0.5"
|
513
518
|
description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
|
514
519
|
optional = false
|
515
520
|
python-versions = ">=3.7"
|
516
521
|
files = [
|
517
|
-
{file = "cryptography-42.0.
|
518
|
-
{file = "cryptography-42.0.
|
519
|
-
{file = "cryptography-42.0.
|
520
|
-
{file = "cryptography-42.0.
|
521
|
-
{file = "cryptography-42.0.
|
522
|
-
{file = "cryptography-42.0.
|
523
|
-
{file = "cryptography-42.0.
|
524
|
-
{file = "cryptography-42.0.
|
525
|
-
{file = "cryptography-42.0.
|
526
|
-
{file = "cryptography-42.0.
|
527
|
-
{file = "cryptography-42.0.
|
528
|
-
{file = "cryptography-42.0.
|
529
|
-
{file = "cryptography-42.0.
|
530
|
-
{file = "cryptography-42.0.
|
531
|
-
{file = "cryptography-42.0.
|
532
|
-
{file = "cryptography-42.0.
|
533
|
-
{file = "cryptography-42.0.
|
534
|
-
{file = "cryptography-42.0.
|
535
|
-
{file = "cryptography-42.0.
|
536
|
-
{file = "cryptography-42.0.
|
537
|
-
{file = "cryptography-42.0.
|
538
|
-
{file = "cryptography-42.0.
|
539
|
-
{file = "cryptography-42.0.
|
540
|
-
{file = "cryptography-42.0.
|
541
|
-
{file = "cryptography-42.0.
|
542
|
-
{file = "cryptography-42.0.
|
543
|
-
{file = "cryptography-42.0.
|
544
|
-
{file = "cryptography-42.0.
|
545
|
-
{file = "cryptography-42.0.
|
546
|
-
{file = "cryptography-42.0.
|
547
|
-
{file = "cryptography-42.0.
|
548
|
-
{file = "cryptography-42.0.
|
522
|
+
{file = "cryptography-42.0.5-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:a30596bae9403a342c978fb47d9b0ee277699fa53bbafad14706af51fe543d16"},
|
523
|
+
{file = "cryptography-42.0.5-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:b7ffe927ee6531c78f81aa17e684e2ff617daeba7f189f911065b2ea2d526dec"},
|
524
|
+
{file = "cryptography-42.0.5-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2424ff4c4ac7f6b8177b53c17ed5d8fa74ae5955656867f5a8affaca36a27abb"},
|
525
|
+
{file = "cryptography-42.0.5-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:329906dcc7b20ff3cad13c069a78124ed8247adcac44b10bea1130e36caae0b4"},
|
526
|
+
{file = "cryptography-42.0.5-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:b03c2ae5d2f0fc05f9a2c0c997e1bc18c8229f392234e8a0194f202169ccd278"},
|
527
|
+
{file = "cryptography-42.0.5-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:f8837fe1d6ac4a8052a9a8ddab256bc006242696f03368a4009be7ee3075cdb7"},
|
528
|
+
{file = "cryptography-42.0.5-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:0270572b8bd2c833c3981724b8ee9747b3ec96f699a9665470018594301439ee"},
|
529
|
+
{file = "cryptography-42.0.5-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:b8cac287fafc4ad485b8a9b67d0ee80c66bf3574f655d3b97ef2e1082360faf1"},
|
530
|
+
{file = "cryptography-42.0.5-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:16a48c23a62a2f4a285699dba2e4ff2d1cff3115b9df052cdd976a18856d8e3d"},
|
531
|
+
{file = "cryptography-42.0.5-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:2bce03af1ce5a5567ab89bd90d11e7bbdff56b8af3acbbec1faded8f44cb06da"},
|
532
|
+
{file = "cryptography-42.0.5-cp37-abi3-win32.whl", hash = "sha256:b6cd2203306b63e41acdf39aa93b86fb566049aeb6dc489b70e34bcd07adca74"},
|
533
|
+
{file = "cryptography-42.0.5-cp37-abi3-win_amd64.whl", hash = "sha256:98d8dc6d012b82287f2c3d26ce1d2dd130ec200c8679b6213b3c73c08b2b7940"},
|
534
|
+
{file = "cryptography-42.0.5-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:5e6275c09d2badf57aea3afa80d975444f4be8d3bc58f7f80d2a484c6f9485c8"},
|
535
|
+
{file = "cryptography-42.0.5-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4985a790f921508f36f81831817cbc03b102d643b5fcb81cd33df3fa291a1a1"},
|
536
|
+
{file = "cryptography-42.0.5-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7cde5f38e614f55e28d831754e8a3bacf9ace5d1566235e39d91b35502d6936e"},
|
537
|
+
{file = "cryptography-42.0.5-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:7367d7b2eca6513681127ebad53b2582911d1736dc2ffc19f2c3ae49997496bc"},
|
538
|
+
{file = "cryptography-42.0.5-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:cd2030f6650c089aeb304cf093f3244d34745ce0cfcc39f20c6fbfe030102e2a"},
|
539
|
+
{file = "cryptography-42.0.5-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a2913c5375154b6ef2e91c10b5720ea6e21007412f6437504ffea2109b5a33d7"},
|
540
|
+
{file = "cryptography-42.0.5-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:c41fb5e6a5fe9ebcd58ca3abfeb51dffb5d83d6775405305bfa8715b76521922"},
|
541
|
+
{file = "cryptography-42.0.5-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:3eaafe47ec0d0ffcc9349e1708be2aaea4c6dd4978d76bf6eb0cb2c13636c6fc"},
|
542
|
+
{file = "cryptography-42.0.5-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:1b95b98b0d2af784078fa69f637135e3c317091b615cd0905f8b8a087e86fa30"},
|
543
|
+
{file = "cryptography-42.0.5-cp39-abi3-win32.whl", hash = "sha256:1f71c10d1e88467126f0efd484bd44bca5e14c664ec2ede64c32f20875c0d413"},
|
544
|
+
{file = "cryptography-42.0.5-cp39-abi3-win_amd64.whl", hash = "sha256:a011a644f6d7d03736214d38832e030d8268bcff4a41f728e6030325fea3e400"},
|
545
|
+
{file = "cryptography-42.0.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:9481ffe3cf013b71b2428b905c4f7a9a4f76ec03065b05ff499bb5682a8d9ad8"},
|
546
|
+
{file = "cryptography-42.0.5-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:ba334e6e4b1d92442b75ddacc615c5476d4ad55cc29b15d590cc6b86efa487e2"},
|
547
|
+
{file = "cryptography-42.0.5-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:ba3e4a42397c25b7ff88cdec6e2a16c2be18720f317506ee25210f6d31925f9c"},
|
548
|
+
{file = "cryptography-42.0.5-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:111a0d8553afcf8eb02a4fea6ca4f59d48ddb34497aa8706a6cf536f1a5ec576"},
|
549
|
+
{file = "cryptography-42.0.5-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:cd65d75953847815962c84a4654a84850b2bb4aed3f26fadcc1c13892e1e29f6"},
|
550
|
+
{file = "cryptography-42.0.5-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:e807b3188f9eb0eaa7bbb579b462c5ace579f1cedb28107ce8b48a9f7ad3679e"},
|
551
|
+
{file = "cryptography-42.0.5-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f12764b8fffc7a123f641d7d049d382b73f96a34117e0b637b80643169cec8ac"},
|
552
|
+
{file = "cryptography-42.0.5-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:37dd623507659e08be98eec89323469e8c7b4c1407c85112634ae3dbdb926fdd"},
|
553
|
+
{file = "cryptography-42.0.5.tar.gz", hash = "sha256:6fe07eec95dfd477eb9530aef5bead34fec819b3aaf6c5bd6d20565da607bfe1"},
|
549
554
|
]
|
550
555
|
|
551
556
|
[package.dependencies]
|
@@ -578,6 +583,17 @@ wrapt = ">=1.10,<2"
|
|
578
583
|
[package.extras]
|
579
584
|
dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"]
|
580
585
|
|
586
|
+
[[package]]
|
587
|
+
name = "distro"
|
588
|
+
version = "1.9.0"
|
589
|
+
description = "Distro - an OS platform information API"
|
590
|
+
optional = false
|
591
|
+
python-versions = ">=3.6"
|
592
|
+
files = [
|
593
|
+
{file = "distro-1.9.0-py3-none-any.whl", hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2"},
|
594
|
+
{file = "distro-1.9.0.tar.gz", hash = "sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed"},
|
595
|
+
]
|
596
|
+
|
581
597
|
[[package]]
|
582
598
|
name = "ecdsa"
|
583
599
|
version = "0.18.0"
|
@@ -596,6 +612,21 @@ six = ">=1.9.0"
|
|
596
612
|
gmpy = ["gmpy"]
|
597
613
|
gmpy2 = ["gmpy2"]
|
598
614
|
|
615
|
+
[[package]]
|
616
|
+
name = "editor"
|
617
|
+
version = "1.6.6"
|
618
|
+
description = "🖋 Open the default text editor 🖋"
|
619
|
+
optional = false
|
620
|
+
python-versions = ">=3.8"
|
621
|
+
files = [
|
622
|
+
{file = "editor-1.6.6-py3-none-any.whl", hash = "sha256:e818e6913f26c2a81eadef503a2741d7cca7f235d20e217274a009ecd5a74abf"},
|
623
|
+
{file = "editor-1.6.6.tar.gz", hash = "sha256:bb6989e872638cd119db9a4fce284cd8e13c553886a1c044c6b8d8a160c871f8"},
|
624
|
+
]
|
625
|
+
|
626
|
+
[package.dependencies]
|
627
|
+
runs = "*"
|
628
|
+
xmod = "*"
|
629
|
+
|
599
630
|
[[package]]
|
600
631
|
name = "esptool"
|
601
632
|
version = "4.7.0"
|
@@ -620,18 +651,29 @@ dev = ["black", "commitizen", "coverage (>=6.0,<7.0)", "flake8 (>=3.2.0)", "flak
|
|
620
651
|
hsm = ["python-pkcs11"]
|
621
652
|
|
622
653
|
[[package]]
|
623
|
-
name = "
|
624
|
-
version = "2.0
|
625
|
-
description = "
|
654
|
+
name = "exceptiongroup"
|
655
|
+
version = "1.2.0"
|
656
|
+
description = "Backport of PEP 654 (exception groups)"
|
626
657
|
optional = false
|
627
|
-
python-versions = ">=3.
|
658
|
+
python-versions = ">=3.7"
|
628
659
|
files = [
|
629
|
-
{file = "
|
630
|
-
{file = "
|
660
|
+
{file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"},
|
661
|
+
{file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"},
|
631
662
|
]
|
632
663
|
|
633
664
|
[package.extras]
|
634
|
-
|
665
|
+
test = ["pytest (>=6)"]
|
666
|
+
|
667
|
+
[[package]]
|
668
|
+
name = "fasteners"
|
669
|
+
version = "0.19"
|
670
|
+
description = "A python package that provides useful locks"
|
671
|
+
optional = false
|
672
|
+
python-versions = ">=3.6"
|
673
|
+
files = [
|
674
|
+
{file = "fasteners-0.19-py3-none-any.whl", hash = "sha256:758819cb5d94cdedf4e836988b74de396ceacb8e2794d21f82d131fd9ee77237"},
|
675
|
+
{file = "fasteners-0.19.tar.gz", hash = "sha256:b4f37c3ac52d8a445af3a66bce57b33b5e90b97c696b7b984f530cf8f0ded09c"},
|
676
|
+
]
|
635
677
|
|
636
678
|
[[package]]
|
637
679
|
name = "humanfriendly"
|
@@ -660,22 +702,49 @@ files = [
|
|
660
702
|
|
661
703
|
[[package]]
|
662
704
|
name = "importlib-metadata"
|
663
|
-
version = "7.0
|
705
|
+
version = "7.1.0"
|
664
706
|
description = "Read metadata from Python packages"
|
665
707
|
optional = false
|
666
708
|
python-versions = ">=3.8"
|
667
709
|
files = [
|
668
|
-
{file = "importlib_metadata-7.0
|
669
|
-
{file = "importlib_metadata-7.0.
|
710
|
+
{file = "importlib_metadata-7.1.0-py3-none-any.whl", hash = "sha256:30962b96c0c223483ed6cc7280e7f0199feb01a0e40cfae4d4450fc6fab1f570"},
|
711
|
+
{file = "importlib_metadata-7.1.0.tar.gz", hash = "sha256:b78938b926ee8d5f020fc4772d487045805a55ddbad2ecf21c6d60938dc7fcd2"},
|
670
712
|
]
|
671
713
|
|
672
714
|
[package.dependencies]
|
673
715
|
zipp = ">=0.5"
|
674
716
|
|
675
717
|
[package.extras]
|
676
|
-
docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (
|
718
|
+
docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
677
719
|
perf = ["ipython"]
|
678
|
-
testing = ["flufl.flake8", "importlib-resources (>=1.3)", "
|
720
|
+
testing = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-perf (>=0.9.2)", "pytest-ruff (>=0.2.1)"]
|
721
|
+
|
722
|
+
[[package]]
|
723
|
+
name = "iniconfig"
|
724
|
+
version = "2.0.0"
|
725
|
+
description = "brain-dead simple config-ini parsing"
|
726
|
+
optional = false
|
727
|
+
python-versions = ">=3.7"
|
728
|
+
files = [
|
729
|
+
{file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"},
|
730
|
+
{file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"},
|
731
|
+
]
|
732
|
+
|
733
|
+
[[package]]
|
734
|
+
name = "inquirer"
|
735
|
+
version = "3.2.4"
|
736
|
+
description = "Collection of common interactive command line user interfaces, based on Inquirer.js"
|
737
|
+
optional = false
|
738
|
+
python-versions = ">=3.8.1"
|
739
|
+
files = [
|
740
|
+
{file = "inquirer-3.2.4-py3-none-any.whl", hash = "sha256:273a4e4a4345ac1afdb17408d40fc8dccf3485db68203357919468561035a763"},
|
741
|
+
{file = "inquirer-3.2.4.tar.gz", hash = "sha256:33b09efc1b742b9d687b540296a8b6a3f773399673321fcc2ab0eb4c109bf9b5"},
|
742
|
+
]
|
743
|
+
|
744
|
+
[package.dependencies]
|
745
|
+
blessed = ">=1.19.0"
|
746
|
+
editor = ">=1.6.0"
|
747
|
+
readchar = ">=3.0.6"
|
679
748
|
|
680
749
|
[[package]]
|
681
750
|
name = "intelhex"
|
@@ -688,6 +757,20 @@ files = [
|
|
688
757
|
{file = "intelhex-2.3.0.tar.gz", hash = "sha256:892b7361a719f4945237da8ccf754e9513db32f5628852785aea108dcd250093"},
|
689
758
|
]
|
690
759
|
|
760
|
+
[[package]]
|
761
|
+
name = "jinxed"
|
762
|
+
version = "1.2.1"
|
763
|
+
description = "Jinxed Terminal Library"
|
764
|
+
optional = false
|
765
|
+
python-versions = "*"
|
766
|
+
files = [
|
767
|
+
{file = "jinxed-1.2.1-py2.py3-none-any.whl", hash = "sha256:37422659c4925969c66148c5e64979f553386a4226b9484d910d3094ced37d30"},
|
768
|
+
{file = "jinxed-1.2.1.tar.gz", hash = "sha256:30c3f861b73279fea1ed928cfd4dfb1f273e16cd62c8a32acfac362da0f78f3f"},
|
769
|
+
]
|
770
|
+
|
771
|
+
[package.dependencies]
|
772
|
+
ansicon = {version = "*", markers = "platform_system == \"Windows\""}
|
773
|
+
|
691
774
|
[[package]]
|
692
775
|
name = "jsonlines"
|
693
776
|
version = "4.0.0"
|
@@ -703,46 +786,23 @@ files = [
|
|
703
786
|
attrs = ">=19.2.0"
|
704
787
|
|
705
788
|
[[package]]
|
706
|
-
name = "
|
707
|
-
version = "1.
|
708
|
-
description = "
|
709
|
-
optional = false
|
710
|
-
python-versions = "
|
711
|
-
files = [
|
712
|
-
{file = "
|
713
|
-
{file = "
|
714
|
-
{file = "libcst-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2bbb4e442224da46b59a248d7d632ed335eae023a921dea1f5c72d2a059f6be9"},
|
715
|
-
{file = "libcst-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4919978c2b395079b64d8a654357854767adbabab13998b39c1f0bc67da8a7"},
|
716
|
-
{file = "libcst-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5e54389abdea995b39ee96ad736ed1b0b8402ed30a7956b7a279c10baf0c0294"},
|
717
|
-
{file = "libcst-1.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:1d45718f7e7a1405a16fd8e7fc75c365120001b6928bfa3c4112f7e533990b9a"},
|
718
|
-
{file = "libcst-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f080e9af843ff609f8f35fc7275c8bf08b02c31115e7cd5b77ca3b6a56c75096"},
|
719
|
-
{file = "libcst-1.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3c7c0edfe3b878d64877671261c7b3ffe9d23181774bfad5d8fcbdbbbde9f064"},
|
720
|
-
{file = "libcst-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b5fecb2b26fa3c1efe6e05ef1420522bd31bb4dae239e4c41fdf3ddbd853aeb"},
|
721
|
-
{file = "libcst-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:968b93400e66e6711a29793291365e312d206dbafd3fc80219cfa717f0f01ad5"},
|
722
|
-
{file = "libcst-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e01879aa8cd478bb8b1e4285cfd0607e64047116f7ab52bc2a787cde584cd686"},
|
723
|
-
{file = "libcst-1.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:b4066dcadf92b183706f81ae0b4342e7624fc1d9c5ca2bf2b44066cb74bf863f"},
|
724
|
-
{file = "libcst-1.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5c0d548d92c6704bb07ce35d78c0e054cdff365def0645c1b57c856c8e112bb4"},
|
725
|
-
{file = "libcst-1.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:82373a35711a8bb2a664dba2b7aeb20bbcce92a4db40af964e9cb2b976f989e7"},
|
726
|
-
{file = "libcst-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cb92398236566f0b73a0c73f8a41a9c4906c793e8f7c2745f30e3fb141a34b5"},
|
727
|
-
{file = "libcst-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13ca9fe82326d82feb2c7b0f5a320ce7ed0d707c32919dd36e1f40792459bf6f"},
|
728
|
-
{file = "libcst-1.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dded0e4f2e18150c4b07fedd7ef84a9abc7f9bd2d47cc1c485248ee1ec58e5cc"},
|
729
|
-
{file = "libcst-1.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:dece0362540abfc39cd2cf5c98cde238b35fd74a1b0167e2563e4b8bb5f47489"},
|
730
|
-
{file = "libcst-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c80f36f4a02d530e28eac7073aabdea7c6795fc820773a02224021d79d164e8b"},
|
731
|
-
{file = "libcst-1.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8b56130f18aca9a98b3bcaf5962b2b26c2dcdd6d5132decf3f0b0b635f4403ba"},
|
732
|
-
{file = "libcst-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4973a9d509cf1a59e07fac55a98f70bc4fd35e09781dffb3ec93ee32fc0de7af"},
|
733
|
-
{file = "libcst-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6dd388c74c04434b41e3b25fc4a0fafa3e6abf91f97181df55e8f8327fd903cc"},
|
734
|
-
{file = "libcst-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38fbd56f885e1f77383a6d1d798a917ffbc6d28dc6b1271eddbf8511c194213e"},
|
735
|
-
{file = "libcst-1.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:f2342634f6c61fc9076dc0baf21e9cf5ef0195a06e1e95c0c9dc583ba3a30d00"},
|
736
|
-
{file = "libcst-1.2.0.tar.gz", hash = "sha256:71dd69fff76e7edaf8fae0f63ffcdbf5016e8cd83165b1d0688d6856aa48186a"},
|
789
|
+
name = "libusb"
|
790
|
+
version = "1.0.27"
|
791
|
+
description = "Python binding for the libusb C library."
|
792
|
+
optional = false
|
793
|
+
python-versions = "<4.0.0,>=3.8.1"
|
794
|
+
files = [
|
795
|
+
{file = "libusb-1.0.27-py3-none-any.whl", hash = "sha256:cf547ebd01044014f2073ffea58a1b4c0172b958e3aed36c1d42e683eed71114"},
|
796
|
+
{file = "libusb-1.0.27.zip", hash = "sha256:3f8055df52d797d2da70ff3b9983e51ab6299c915afdea26988146ec7f6a4170"},
|
737
797
|
]
|
738
798
|
|
739
799
|
[package.dependencies]
|
740
|
-
|
741
|
-
|
742
|
-
typing-inspect = ">=0.4.0"
|
800
|
+
pkg-about = ">=1.1.5"
|
801
|
+
setuptools = ">=68.2.2"
|
743
802
|
|
744
803
|
[package.extras]
|
745
|
-
|
804
|
+
doc = ["Sphinx (>=7.1.2)", "nbsphinx (>=0.8.10)", "restructuredtext-lint (>=1.4.0)", "sphinx-copybutton (>=0.5.1)", "sphinx-lint (>=0.6.7)", "sphinx-tabs (>=3.4.1)", "sphinx-toolbox (>=3.5.0)", "sphinxcontrib-spelling (>=7.7.0)"]
|
805
|
+
test = ["deepdiff (>=6.7.1)", "rich (>=13.7.0)"]
|
746
806
|
|
747
807
|
[[package]]
|
748
808
|
name = "loguru"
|
@@ -762,20 +822,6 @@ win32-setctime = {version = ">=1.0.0", markers = "sys_platform == \"win32\""}
|
|
762
822
|
[package.extras]
|
763
823
|
dev = ["Sphinx (==7.2.5)", "colorama (==0.4.5)", "colorama (==0.4.6)", "exceptiongroup (==1.1.3)", "freezegun (==1.1.0)", "freezegun (==1.2.2)", "mypy (==v0.910)", "mypy (==v0.971)", "mypy (==v1.4.1)", "mypy (==v1.5.1)", "pre-commit (==3.4.0)", "pytest (==6.1.2)", "pytest (==7.4.0)", "pytest-cov (==2.12.1)", "pytest-cov (==4.1.0)", "pytest-mypy-plugins (==1.9.3)", "pytest-mypy-plugins (==3.0.0)", "sphinx-autobuild (==2021.3.14)", "sphinx-rtd-theme (==1.3.0)", "tox (==3.27.1)", "tox (==4.11.0)"]
|
764
824
|
|
765
|
-
[[package]]
|
766
|
-
name = "mailbits"
|
767
|
-
version = "0.2.1"
|
768
|
-
description = "Assorted e-mail utility functions"
|
769
|
-
optional = false
|
770
|
-
python-versions = "~=3.6"
|
771
|
-
files = [
|
772
|
-
{file = "mailbits-0.2.1-py3-none-any.whl", hash = "sha256:04c06b036bba93067d96b08288780ae7002ba604ac7b205bc55dca52474fc3e2"},
|
773
|
-
{file = "mailbits-0.2.1.tar.gz", hash = "sha256:eb53610e01611a95d2ae46559e00d862d907c776e88034dd53020a53baac21d1"},
|
774
|
-
]
|
775
|
-
|
776
|
-
[package.dependencies]
|
777
|
-
attrs = ">=18.1"
|
778
|
-
|
779
825
|
[[package]]
|
780
826
|
name = "markdown-it-py"
|
781
827
|
version = "3.0.0"
|
@@ -812,42 +858,20 @@ files = [
|
|
812
858
|
]
|
813
859
|
|
814
860
|
[[package]]
|
815
|
-
name = "
|
816
|
-
version = "
|
817
|
-
description = "
|
861
|
+
name = "mock"
|
862
|
+
version = "4.0.3"
|
863
|
+
description = "Rolling backport of unittest.mock for all Pythons"
|
818
864
|
optional = false
|
819
|
-
python-versions = ">=3.
|
865
|
+
python-versions = ">=3.6"
|
820
866
|
files = [
|
821
|
-
{file = "
|
822
|
-
{file = "
|
867
|
+
{file = "mock-4.0.3-py3-none-any.whl", hash = "sha256:122fcb64ee37cfad5b3f48d7a7d51875d7031aaf3d8be7c42e2bee25044eee62"},
|
868
|
+
{file = "mock-4.0.3.tar.gz", hash = "sha256:7d3fbbde18228f4ff2f1f119a45cdffa458b4c0dee32eb4d2bb2f82554bac7bc"},
|
823
869
|
]
|
824
870
|
|
825
|
-
[package.
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
click = ">=8.1.3,<9.0.0"
|
830
|
-
executing = ">=2.0.1,<3.0.0"
|
831
|
-
libcst = ">=1.1.0,<2.0.0"
|
832
|
-
loguru = ">=0.6,<0.8"
|
833
|
-
mpremote = ">=1.22.0,<2.0.0"
|
834
|
-
mypy = "1.7.0"
|
835
|
-
mypy-gitlab-code-quality = ">=1.1.0,<2.0.0"
|
836
|
-
packaging = ">=21.3,<24.0"
|
837
|
-
pipx = ">=1.1.0,<2.0.0"
|
838
|
-
pygithub = ">=2.1.1,<3.0.0"
|
839
|
-
pypi-simple = ">=1.0.0,<2.0.0"
|
840
|
-
pyright = ">=1.1.341,<2.0.0"
|
841
|
-
pyserial = ">=3.5,<4.0"
|
842
|
-
pysondb-v2 = ">=2.1.0,<3.0.0"
|
843
|
-
python-minifier = {version = ">=2.7.0,<3.0.0", markers = "python_version < \"3.12\""}
|
844
|
-
requests = ">=2.28.0,<3.0.0"
|
845
|
-
rich-click = ">=1.7.3,<2.0.0"
|
846
|
-
tabulate = ">=0.9.0,<0.10.0"
|
847
|
-
tenacity = ">=8.2.2,<9.0.0"
|
848
|
-
tomli = {version = ">=2.0.1,<3.0.0", markers = "python_version < \"3.11\""}
|
849
|
-
tomli-w = ">=1.0.0,<2.0.0"
|
850
|
-
typed-config = ">=1.3.0,<2.0.0"
|
871
|
+
[package.extras]
|
872
|
+
build = ["blurb", "twine", "wheel"]
|
873
|
+
docs = ["sphinx"]
|
874
|
+
test = ["pytest (<5.4)", "pytest-cov"]
|
851
875
|
|
852
876
|
[[package]]
|
853
877
|
name = "mpremote"
|
@@ -864,89 +888,6 @@ files = [
|
|
864
888
|
importlib-metadata = ">=1.4"
|
865
889
|
pyserial = ">=3.3"
|
866
890
|
|
867
|
-
[[package]]
|
868
|
-
name = "mypy"
|
869
|
-
version = "1.7.0"
|
870
|
-
description = "Optional static typing for Python"
|
871
|
-
optional = false
|
872
|
-
python-versions = ">=3.8"
|
873
|
-
files = [
|
874
|
-
{file = "mypy-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5da84d7bf257fd8f66b4f759a904fd2c5a765f70d8b52dde62b521972a0a2357"},
|
875
|
-
{file = "mypy-1.7.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a3637c03f4025f6405737570d6cbfa4f1400eb3c649317634d273687a09ffc2f"},
|
876
|
-
{file = "mypy-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b633f188fc5ae1b6edca39dae566974d7ef4e9aaaae00bc36efe1f855e5173ac"},
|
877
|
-
{file = "mypy-1.7.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d6ed9a3997b90c6f891138e3f83fb8f475c74db4ccaa942a1c7bf99e83a989a1"},
|
878
|
-
{file = "mypy-1.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:1fe46e96ae319df21359c8db77e1aecac8e5949da4773c0274c0ef3d8d1268a9"},
|
879
|
-
{file = "mypy-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:df67fbeb666ee8828f675fee724cc2cbd2e4828cc3df56703e02fe6a421b7401"},
|
880
|
-
{file = "mypy-1.7.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a79cdc12a02eb526d808a32a934c6fe6df07b05f3573d210e41808020aed8b5d"},
|
881
|
-
{file = "mypy-1.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f65f385a6f43211effe8c682e8ec3f55d79391f70a201575def73d08db68ead1"},
|
882
|
-
{file = "mypy-1.7.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0e81ffd120ee24959b449b647c4b2fbfcf8acf3465e082b8d58fd6c4c2b27e46"},
|
883
|
-
{file = "mypy-1.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:f29386804c3577c83d76520abf18cfcd7d68264c7e431c5907d250ab502658ee"},
|
884
|
-
{file = "mypy-1.7.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:87c076c174e2c7ef8ab416c4e252d94c08cd4980a10967754f91571070bf5fbe"},
|
885
|
-
{file = "mypy-1.7.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6cb8d5f6d0fcd9e708bb190b224089e45902cacef6f6915481806b0c77f7786d"},
|
886
|
-
{file = "mypy-1.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d93e76c2256aa50d9c82a88e2f569232e9862c9982095f6d54e13509f01222fc"},
|
887
|
-
{file = "mypy-1.7.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cddee95dea7990e2215576fae95f6b78a8c12f4c089d7e4367564704e99118d3"},
|
888
|
-
{file = "mypy-1.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:d01921dbd691c4061a3e2ecdbfbfad029410c5c2b1ee88946bf45c62c6c91210"},
|
889
|
-
{file = "mypy-1.7.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:185cff9b9a7fec1f9f7d8352dff8a4c713b2e3eea9c6c4b5ff7f0edf46b91e41"},
|
890
|
-
{file = "mypy-1.7.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7a7b1e399c47b18feb6f8ad4a3eef3813e28c1e871ea7d4ea5d444b2ac03c418"},
|
891
|
-
{file = "mypy-1.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc9fe455ad58a20ec68599139ed1113b21f977b536a91b42bef3ffed5cce7391"},
|
892
|
-
{file = "mypy-1.7.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d0fa29919d2e720c8dbaf07d5578f93d7b313c3e9954c8ec05b6d83da592e5d9"},
|
893
|
-
{file = "mypy-1.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:2b53655a295c1ed1af9e96b462a736bf083adba7b314ae775563e3fb4e6795f5"},
|
894
|
-
{file = "mypy-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c1b06b4b109e342f7dccc9efda965fc3970a604db70f8560ddfdee7ef19afb05"},
|
895
|
-
{file = "mypy-1.7.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:bf7a2f0a6907f231d5e41adba1a82d7d88cf1f61a70335889412dec99feeb0f8"},
|
896
|
-
{file = "mypy-1.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:551d4a0cdcbd1d2cccdcc7cb516bb4ae888794929f5b040bb51aae1846062901"},
|
897
|
-
{file = "mypy-1.7.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:55d28d7963bef00c330cb6461db80b0b72afe2f3c4e2963c99517cf06454e665"},
|
898
|
-
{file = "mypy-1.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:870bd1ffc8a5862e593185a4c169804f2744112b4a7c55b93eb50f48e7a77010"},
|
899
|
-
{file = "mypy-1.7.0-py3-none-any.whl", hash = "sha256:96650d9a4c651bc2a4991cf46f100973f656d69edc7faf91844e87fe627f7e96"},
|
900
|
-
{file = "mypy-1.7.0.tar.gz", hash = "sha256:1e280b5697202efa698372d2f39e9a6713a0395a756b1c6bd48995f8d72690dc"},
|
901
|
-
]
|
902
|
-
|
903
|
-
[package.dependencies]
|
904
|
-
mypy-extensions = ">=1.0.0"
|
905
|
-
tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""}
|
906
|
-
typing-extensions = ">=4.1.0"
|
907
|
-
|
908
|
-
[package.extras]
|
909
|
-
dmypy = ["psutil (>=4.0)"]
|
910
|
-
install-types = ["pip"]
|
911
|
-
mypyc = ["setuptools (>=50)"]
|
912
|
-
reports = ["lxml"]
|
913
|
-
|
914
|
-
[[package]]
|
915
|
-
name = "mypy-extensions"
|
916
|
-
version = "1.0.0"
|
917
|
-
description = "Type system extensions for programs checked with the mypy type checker."
|
918
|
-
optional = false
|
919
|
-
python-versions = ">=3.5"
|
920
|
-
files = [
|
921
|
-
{file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"},
|
922
|
-
{file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"},
|
923
|
-
]
|
924
|
-
|
925
|
-
[[package]]
|
926
|
-
name = "mypy-gitlab-code-quality"
|
927
|
-
version = "1.1.0"
|
928
|
-
description = "Simple script to generate gitlab code quality report from output of mypy."
|
929
|
-
optional = false
|
930
|
-
python-versions = ">=3.8"
|
931
|
-
files = [
|
932
|
-
{file = "mypy-gitlab-code-quality-1.1.0.tar.gz", hash = "sha256:be06b0def23b11f9ba10dda368cdb15f6320b9beb59b02d72642185630ee80e1"},
|
933
|
-
{file = "mypy_gitlab_code_quality-1.1.0-py3-none-any.whl", hash = "sha256:9890808b69a9e079ee852c482612c10008b39c767c96c5bab55aa9a0a4a970ba"},
|
934
|
-
]
|
935
|
-
|
936
|
-
[[package]]
|
937
|
-
name = "nodeenv"
|
938
|
-
version = "1.8.0"
|
939
|
-
description = "Node.js virtual environment builder"
|
940
|
-
optional = false
|
941
|
-
python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*"
|
942
|
-
files = [
|
943
|
-
{file = "nodeenv-1.8.0-py2.py3-none-any.whl", hash = "sha256:df865724bb3c3adc86b3876fa209771517b0cfe596beff01a92700e0e8be4cec"},
|
944
|
-
{file = "nodeenv-1.8.0.tar.gz", hash = "sha256:d51e0c37e64fbf47d017feac3145cdbb58836d7eee8c6f6d3b6880c5456227d2"},
|
945
|
-
]
|
946
|
-
|
947
|
-
[package.dependencies]
|
948
|
-
setuptools = "*"
|
949
|
-
|
950
891
|
[[package]]
|
951
892
|
name = "packaging"
|
952
893
|
version = "23.2"
|
@@ -959,34 +900,24 @@ files = [
|
|
959
900
|
]
|
960
901
|
|
961
902
|
[[package]]
|
962
|
-
name = "
|
963
|
-
version = "
|
964
|
-
description = "
|
965
|
-
optional = false
|
966
|
-
python-versions = ">=3.8"
|
967
|
-
files = [
|
968
|
-
{file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"},
|
969
|
-
{file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"},
|
970
|
-
]
|
971
|
-
|
972
|
-
[[package]]
|
973
|
-
name = "pipx"
|
974
|
-
version = "1.4.3"
|
975
|
-
description = "Install and Run Python Applications in Isolated Environments"
|
903
|
+
name = "pkg-about"
|
904
|
+
version = "1.1.5"
|
905
|
+
description = "Shares Python package metadata at runtime."
|
976
906
|
optional = false
|
977
|
-
python-versions = "
|
907
|
+
python-versions = "<4.0.0,>=3.8.1"
|
978
908
|
files = [
|
979
|
-
{file = "
|
980
|
-
{file = "
|
909
|
+
{file = "pkg-about-1.1.5.zip", hash = "sha256:079bbe889baa1edbf80651a1756a98c417d2f3dfd2d3539798bc83390ada1dfa"},
|
910
|
+
{file = "pkg_about-1.1.5-py3-none-any.whl", hash = "sha256:09caff4ae4cbec14b28579199106f295a62472c20c0621e358b9b12395e23ee4"},
|
981
911
|
]
|
982
912
|
|
983
913
|
[package.dependencies]
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
914
|
+
packaging = ">=23.2.0"
|
915
|
+
setuptools = ">=68.2.2"
|
916
|
+
tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""}
|
917
|
+
|
918
|
+
[package.extras]
|
919
|
+
doc = ["Sphinx (>=7.1.2)", "nbsphinx (>=0.8.10)", "restructuredtext-lint (>=1.4.0)", "sphinx-copybutton (>=0.5.1)", "sphinx-lint (>=0.6.7)", "sphinx-tabs (>=3.4.1)", "sphinx-toolbox (>=3.5.0)", "sphinxcontrib-spelling (>=7.7.0)"]
|
920
|
+
test = ["deepdiff (>=6.7.1)", "rich (>=13.7.0)"]
|
990
921
|
|
991
922
|
[[package]]
|
992
923
|
name = "platformdirs"
|
@@ -1003,6 +934,21 @@ files = [
|
|
1003
934
|
docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"]
|
1004
935
|
test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"]
|
1005
936
|
|
937
|
+
[[package]]
|
938
|
+
name = "pluggy"
|
939
|
+
version = "1.4.0"
|
940
|
+
description = "plugin and hook calling mechanisms for python"
|
941
|
+
optional = false
|
942
|
+
python-versions = ">=3.8"
|
943
|
+
files = [
|
944
|
+
{file = "pluggy-1.4.0-py3-none-any.whl", hash = "sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981"},
|
945
|
+
{file = "pluggy-1.4.0.tar.gz", hash = "sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be"},
|
946
|
+
]
|
947
|
+
|
948
|
+
[package.extras]
|
949
|
+
dev = ["pre-commit", "tox"]
|
950
|
+
testing = ["pytest", "pytest-benchmark"]
|
951
|
+
|
1006
952
|
[[package]]
|
1007
953
|
name = "psutil"
|
1008
954
|
version = "5.9.8"
|
@@ -1033,156 +979,35 @@ test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"]
|
|
1033
979
|
|
1034
980
|
[[package]]
|
1035
981
|
name = "pycparser"
|
1036
|
-
version = "2.
|
982
|
+
version = "2.22"
|
1037
983
|
description = "C parser in Python"
|
1038
984
|
optional = false
|
1039
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
1040
|
-
files = [
|
1041
|
-
{file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
|
1042
|
-
{file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
|
1043
|
-
]
|
1044
|
-
|
1045
|
-
[[package]]
|
1046
|
-
name = "pydantic"
|
1047
|
-
version = "2.6.1"
|
1048
|
-
description = "Data validation using Python type hints"
|
1049
|
-
optional = false
|
1050
985
|
python-versions = ">=3.8"
|
1051
986
|
files = [
|
1052
|
-
{file = "
|
1053
|
-
{file = "
|
987
|
+
{file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"},
|
988
|
+
{file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"},
|
1054
989
|
]
|
1055
990
|
|
1056
|
-
[package.dependencies]
|
1057
|
-
annotated-types = ">=0.4.0"
|
1058
|
-
pydantic-core = "2.16.2"
|
1059
|
-
typing-extensions = ">=4.6.1"
|
1060
|
-
|
1061
|
-
[package.extras]
|
1062
|
-
email = ["email-validator (>=2.0.0)"]
|
1063
|
-
|
1064
|
-
[[package]]
|
1065
|
-
name = "pydantic-core"
|
1066
|
-
version = "2.16.2"
|
1067
|
-
description = ""
|
1068
|
-
optional = false
|
1069
|
-
python-versions = ">=3.8"
|
1070
|
-
files = [
|
1071
|
-
{file = "pydantic_core-2.16.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3fab4e75b8c525a4776e7630b9ee48aea50107fea6ca9f593c98da3f4d11bf7c"},
|
1072
|
-
{file = "pydantic_core-2.16.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8bde5b48c65b8e807409e6f20baee5d2cd880e0fad00b1a811ebc43e39a00ab2"},
|
1073
|
-
{file = "pydantic_core-2.16.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2924b89b16420712e9bb8192396026a8fbd6d8726224f918353ac19c4c043d2a"},
|
1074
|
-
{file = "pydantic_core-2.16.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:16aa02e7a0f539098e215fc193c8926c897175d64c7926d00a36188917717a05"},
|
1075
|
-
{file = "pydantic_core-2.16.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:936a787f83db1f2115ee829dd615c4f684ee48ac4de5779ab4300994d8af325b"},
|
1076
|
-
{file = "pydantic_core-2.16.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:459d6be6134ce3b38e0ef76f8a672924460c455d45f1ad8fdade36796df1ddc8"},
|
1077
|
-
{file = "pydantic_core-2.16.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9ee4febb249c591d07b2d4dd36ebcad0ccd128962aaa1801508320896575ef"},
|
1078
|
-
{file = "pydantic_core-2.16.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:40a0bd0bed96dae5712dab2aba7d334a6c67cbcac2ddfca7dbcc4a8176445990"},
|
1079
|
-
{file = "pydantic_core-2.16.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:870dbfa94de9b8866b37b867a2cb37a60c401d9deb4a9ea392abf11a1f98037b"},
|
1080
|
-
{file = "pydantic_core-2.16.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:308974fdf98046db28440eb3377abba274808bf66262e042c412eb2adf852731"},
|
1081
|
-
{file = "pydantic_core-2.16.2-cp310-none-win32.whl", hash = "sha256:a477932664d9611d7a0816cc3c0eb1f8856f8a42435488280dfbf4395e141485"},
|
1082
|
-
{file = "pydantic_core-2.16.2-cp310-none-win_amd64.whl", hash = "sha256:8f9142a6ed83d90c94a3efd7af8873bf7cefed2d3d44387bf848888482e2d25f"},
|
1083
|
-
{file = "pydantic_core-2.16.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:406fac1d09edc613020ce9cf3f2ccf1a1b2f57ab00552b4c18e3d5276c67eb11"},
|
1084
|
-
{file = "pydantic_core-2.16.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ce232a6170dd6532096cadbf6185271e4e8c70fc9217ebe105923ac105da9978"},
|
1085
|
-
{file = "pydantic_core-2.16.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a90fec23b4b05a09ad988e7a4f4e081711a90eb2a55b9c984d8b74597599180f"},
|
1086
|
-
{file = "pydantic_core-2.16.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8aafeedb6597a163a9c9727d8a8bd363a93277701b7bfd2749fbefee2396469e"},
|
1087
|
-
{file = "pydantic_core-2.16.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9957433c3a1b67bdd4c63717eaf174ebb749510d5ea612cd4e83f2d9142f3fc8"},
|
1088
|
-
{file = "pydantic_core-2.16.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0d7a9165167269758145756db43a133608a531b1e5bb6a626b9ee24bc38a8f7"},
|
1089
|
-
{file = "pydantic_core-2.16.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dffaf740fe2e147fedcb6b561353a16243e654f7fe8e701b1b9db148242e1272"},
|
1090
|
-
{file = "pydantic_core-2.16.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f8ed79883b4328b7f0bd142733d99c8e6b22703e908ec63d930b06be3a0e7113"},
|
1091
|
-
{file = "pydantic_core-2.16.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:cf903310a34e14651c9de056fcc12ce090560864d5a2bb0174b971685684e1d8"},
|
1092
|
-
{file = "pydantic_core-2.16.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:46b0d5520dbcafea9a8645a8164658777686c5c524d381d983317d29687cce97"},
|
1093
|
-
{file = "pydantic_core-2.16.2-cp311-none-win32.whl", hash = "sha256:70651ff6e663428cea902dac297066d5c6e5423fda345a4ca62430575364d62b"},
|
1094
|
-
{file = "pydantic_core-2.16.2-cp311-none-win_amd64.whl", hash = "sha256:98dc6f4f2095fc7ad277782a7c2c88296badcad92316b5a6e530930b1d475ebc"},
|
1095
|
-
{file = "pydantic_core-2.16.2-cp311-none-win_arm64.whl", hash = "sha256:ef6113cd31411eaf9b39fc5a8848e71c72656fd418882488598758b2c8c6dfa0"},
|
1096
|
-
{file = "pydantic_core-2.16.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:88646cae28eb1dd5cd1e09605680c2b043b64d7481cdad7f5003ebef401a3039"},
|
1097
|
-
{file = "pydantic_core-2.16.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7b883af50eaa6bb3299780651e5be921e88050ccf00e3e583b1e92020333304b"},
|
1098
|
-
{file = "pydantic_core-2.16.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bf26c2e2ea59d32807081ad51968133af3025c4ba5753e6a794683d2c91bf6e"},
|
1099
|
-
{file = "pydantic_core-2.16.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:99af961d72ac731aae2a1b55ccbdae0733d816f8bfb97b41909e143de735f522"},
|
1100
|
-
{file = "pydantic_core-2.16.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02906e7306cb8c5901a1feb61f9ab5e5c690dbbeaa04d84c1b9ae2a01ebe9379"},
|
1101
|
-
{file = "pydantic_core-2.16.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5362d099c244a2d2f9659fb3c9db7c735f0004765bbe06b99be69fbd87c3f15"},
|
1102
|
-
{file = "pydantic_core-2.16.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ac426704840877a285d03a445e162eb258924f014e2f074e209d9b4ff7bf380"},
|
1103
|
-
{file = "pydantic_core-2.16.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b94cbda27267423411c928208e89adddf2ea5dd5f74b9528513f0358bba019cb"},
|
1104
|
-
{file = "pydantic_core-2.16.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:6db58c22ac6c81aeac33912fb1af0e930bc9774166cdd56eade913d5f2fff35e"},
|
1105
|
-
{file = "pydantic_core-2.16.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:396fdf88b1b503c9c59c84a08b6833ec0c3b5ad1a83230252a9e17b7dfb4cffc"},
|
1106
|
-
{file = "pydantic_core-2.16.2-cp312-none-win32.whl", hash = "sha256:7c31669e0c8cc68400ef0c730c3a1e11317ba76b892deeefaf52dcb41d56ed5d"},
|
1107
|
-
{file = "pydantic_core-2.16.2-cp312-none-win_amd64.whl", hash = "sha256:a3b7352b48fbc8b446b75f3069124e87f599d25afb8baa96a550256c031bb890"},
|
1108
|
-
{file = "pydantic_core-2.16.2-cp312-none-win_arm64.whl", hash = "sha256:a9e523474998fb33f7c1a4d55f5504c908d57add624599e095c20fa575b8d943"},
|
1109
|
-
{file = "pydantic_core-2.16.2-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:ae34418b6b389d601b31153b84dce480351a352e0bb763684a1b993d6be30f17"},
|
1110
|
-
{file = "pydantic_core-2.16.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:732bd062c9e5d9582a30e8751461c1917dd1ccbdd6cafb032f02c86b20d2e7ec"},
|
1111
|
-
{file = "pydantic_core-2.16.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b52776a2e3230f4854907a1e0946eec04d41b1fc64069ee774876bbe0eab55"},
|
1112
|
-
{file = "pydantic_core-2.16.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ef551c053692b1e39e3f7950ce2296536728871110e7d75c4e7753fb30ca87f4"},
|
1113
|
-
{file = "pydantic_core-2.16.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ebb892ed8599b23fa8f1799e13a12c87a97a6c9d0f497525ce9858564c4575a4"},
|
1114
|
-
{file = "pydantic_core-2.16.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa6c8c582036275997a733427b88031a32ffa5dfc3124dc25a730658c47a572f"},
|
1115
|
-
{file = "pydantic_core-2.16.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4ba0884a91f1aecce75202473ab138724aa4fb26d7707f2e1fa6c3e68c84fbf"},
|
1116
|
-
{file = "pydantic_core-2.16.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7924e54f7ce5d253d6160090ddc6df25ed2feea25bfb3339b424a9dd591688bc"},
|
1117
|
-
{file = "pydantic_core-2.16.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69a7b96b59322a81c2203be537957313b07dd333105b73db0b69212c7d867b4b"},
|
1118
|
-
{file = "pydantic_core-2.16.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:7e6231aa5bdacda78e96ad7b07d0c312f34ba35d717115f4b4bff6cb87224f0f"},
|
1119
|
-
{file = "pydantic_core-2.16.2-cp38-none-win32.whl", hash = "sha256:41dac3b9fce187a25c6253ec79a3f9e2a7e761eb08690e90415069ea4a68ff7a"},
|
1120
|
-
{file = "pydantic_core-2.16.2-cp38-none-win_amd64.whl", hash = "sha256:f685dbc1fdadb1dcd5b5e51e0a378d4685a891b2ddaf8e2bba89bd3a7144e44a"},
|
1121
|
-
{file = "pydantic_core-2.16.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:55749f745ebf154c0d63d46c8c58594d8894b161928aa41adbb0709c1fe78b77"},
|
1122
|
-
{file = "pydantic_core-2.16.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b30b0dd58a4509c3bd7eefddf6338565c4905406aee0c6e4a5293841411a1286"},
|
1123
|
-
{file = "pydantic_core-2.16.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18de31781cdc7e7b28678df7c2d7882f9692ad060bc6ee3c94eb15a5d733f8f7"},
|
1124
|
-
{file = "pydantic_core-2.16.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5864b0242f74b9dd0b78fd39db1768bc3f00d1ffc14e596fd3e3f2ce43436a33"},
|
1125
|
-
{file = "pydantic_core-2.16.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8f9186ca45aee030dc8234118b9c0784ad91a0bb27fc4e7d9d6608a5e3d386c"},
|
1126
|
-
{file = "pydantic_core-2.16.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cc6f6c9be0ab6da37bc77c2dda5f14b1d532d5dbef00311ee6e13357a418e646"},
|
1127
|
-
{file = "pydantic_core-2.16.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa057095f621dad24a1e906747179a69780ef45cc8f69e97463692adbcdae878"},
|
1128
|
-
{file = "pydantic_core-2.16.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6ad84731a26bcfb299f9eab56c7932d46f9cad51c52768cace09e92a19e4cf55"},
|
1129
|
-
{file = "pydantic_core-2.16.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:3b052c753c4babf2d1edc034c97851f867c87d6f3ea63a12e2700f159f5c41c3"},
|
1130
|
-
{file = "pydantic_core-2.16.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e0f686549e32ccdb02ae6f25eee40cc33900910085de6aa3790effd391ae10c2"},
|
1131
|
-
{file = "pydantic_core-2.16.2-cp39-none-win32.whl", hash = "sha256:7afb844041e707ac9ad9acad2188a90bffce2c770e6dc2318be0c9916aef1469"},
|
1132
|
-
{file = "pydantic_core-2.16.2-cp39-none-win_amd64.whl", hash = "sha256:9da90d393a8227d717c19f5397688a38635afec89f2e2d7af0df037f3249c39a"},
|
1133
|
-
{file = "pydantic_core-2.16.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5f60f920691a620b03082692c378661947d09415743e437a7478c309eb0e4f82"},
|
1134
|
-
{file = "pydantic_core-2.16.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:47924039e785a04d4a4fa49455e51b4eb3422d6eaacfde9fc9abf8fdef164e8a"},
|
1135
|
-
{file = "pydantic_core-2.16.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e6294e76b0380bb7a61eb8a39273c40b20beb35e8c87ee101062834ced19c545"},
|
1136
|
-
{file = "pydantic_core-2.16.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe56851c3f1d6f5384b3051c536cc81b3a93a73faf931f404fef95217cf1e10d"},
|
1137
|
-
{file = "pydantic_core-2.16.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9d776d30cde7e541b8180103c3f294ef7c1862fd45d81738d156d00551005784"},
|
1138
|
-
{file = "pydantic_core-2.16.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:72f7919af5de5ecfaf1eba47bf9a5d8aa089a3340277276e5636d16ee97614d7"},
|
1139
|
-
{file = "pydantic_core-2.16.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:4bfcbde6e06c56b30668a0c872d75a7ef3025dc3c1823a13cf29a0e9b33f67e8"},
|
1140
|
-
{file = "pydantic_core-2.16.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ff7c97eb7a29aba230389a2661edf2e9e06ce616c7e35aa764879b6894a44b25"},
|
1141
|
-
{file = "pydantic_core-2.16.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:9b5f13857da99325dcabe1cc4e9e6a3d7b2e2c726248ba5dd4be3e8e4a0b6d0e"},
|
1142
|
-
{file = "pydantic_core-2.16.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:a7e41e3ada4cca5f22b478c08e973c930e5e6c7ba3588fb8e35f2398cdcc1545"},
|
1143
|
-
{file = "pydantic_core-2.16.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:60eb8ceaa40a41540b9acae6ae7c1f0a67d233c40dc4359c256ad2ad85bdf5e5"},
|
1144
|
-
{file = "pydantic_core-2.16.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7beec26729d496a12fd23cf8da9944ee338c8b8a17035a560b585c36fe81af20"},
|
1145
|
-
{file = "pydantic_core-2.16.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:22c5f022799f3cd6741e24f0443ead92ef42be93ffda0d29b2597208c94c3753"},
|
1146
|
-
{file = "pydantic_core-2.16.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:eca58e319f4fd6df004762419612122b2c7e7d95ffafc37e890252f869f3fb2a"},
|
1147
|
-
{file = "pydantic_core-2.16.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ed957db4c33bc99895f3a1672eca7e80e8cda8bd1e29a80536b4ec2153fa9804"},
|
1148
|
-
{file = "pydantic_core-2.16.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:459c0d338cc55d099798618f714b21b7ece17eb1a87879f2da20a3ff4c7628e2"},
|
1149
|
-
{file = "pydantic_core-2.16.2.tar.gz", hash = "sha256:0ba503850d8b8dcc18391f10de896ae51d37fe5fe43dbfb6a35c5c5cad271a06"},
|
1150
|
-
]
|
1151
|
-
|
1152
|
-
[package.dependencies]
|
1153
|
-
typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0"
|
1154
|
-
|
1155
991
|
[[package]]
|
1156
992
|
name = "pyelftools"
|
1157
|
-
version = "0.
|
993
|
+
version = "0.31"
|
1158
994
|
description = "Library for analyzing ELF files and DWARF debugging information"
|
1159
995
|
optional = false
|
1160
996
|
python-versions = "*"
|
1161
997
|
files = [
|
1162
|
-
{file = "pyelftools-0.
|
1163
|
-
{file = "pyelftools-0.
|
1164
|
-
]
|
1165
|
-
|
1166
|
-
[[package]]
|
1167
|
-
name = "pyflakes"
|
1168
|
-
version = "3.2.0"
|
1169
|
-
description = "passive checker of Python programs"
|
1170
|
-
optional = false
|
1171
|
-
python-versions = ">=3.8"
|
1172
|
-
files = [
|
1173
|
-
{file = "pyflakes-3.2.0-py2.py3-none-any.whl", hash = "sha256:84b5be138a2dfbb40689ca07e2152deb896a65c3a3e24c251c5c62489568074a"},
|
1174
|
-
{file = "pyflakes-3.2.0.tar.gz", hash = "sha256:1c61603ff154621fb2a9172037d84dca3500def8c8b630657d1701f026f8af3f"},
|
998
|
+
{file = "pyelftools-0.31-py3-none-any.whl", hash = "sha256:f52de7b3c7e8c64c8abc04a79a1cf37ac5fb0b8a49809827130b858944840607"},
|
999
|
+
{file = "pyelftools-0.31.tar.gz", hash = "sha256:c774416b10310156879443b81187d182d8d9ee499660380e645918b50bc88f99"},
|
1175
1000
|
]
|
1176
1001
|
|
1177
1002
|
[[package]]
|
1178
1003
|
name = "pygithub"
|
1179
|
-
version = "2.
|
1004
|
+
version = "2.3.0"
|
1180
1005
|
description = "Use the full Github API v3"
|
1181
1006
|
optional = false
|
1182
1007
|
python-versions = ">=3.7"
|
1183
1008
|
files = [
|
1184
|
-
{file = "PyGithub-2.
|
1185
|
-
{file = "PyGithub-2.
|
1009
|
+
{file = "PyGithub-2.3.0-py3-none-any.whl", hash = "sha256:65b499728be3ce7b0cd2cd760da3b32f0f4d7bc55e5e0677617f90f6564e793e"},
|
1010
|
+
{file = "PyGithub-2.3.0.tar.gz", hash = "sha256:0148d7347a1cdeed99af905077010aef81a4dad988b0ba51d4108bf66b443f7e"},
|
1186
1011
|
]
|
1187
1012
|
|
1188
1013
|
[package.dependencies]
|
@@ -1254,27 +1079,6 @@ cffi = ">=1.4.1"
|
|
1254
1079
|
docs = ["sphinx (>=1.6.5)", "sphinx-rtd-theme"]
|
1255
1080
|
tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"]
|
1256
1081
|
|
1257
|
-
[[package]]
|
1258
|
-
name = "pypi-simple"
|
1259
|
-
version = "1.4.1"
|
1260
|
-
description = "PyPI Simple Repository API client library"
|
1261
|
-
optional = false
|
1262
|
-
python-versions = ">=3.7"
|
1263
|
-
files = [
|
1264
|
-
{file = "pypi_simple-1.4.1-py3-none-any.whl", hash = "sha256:e0d1b6e1278b825ffb7a5c01b497a2c6ebf1f63d0aa36bf7d7bbaf101a70b987"},
|
1265
|
-
{file = "pypi_simple-1.4.1.tar.gz", hash = "sha256:8bd1c303ef5c9b6736fd7a6a478fba4d10b405d668e56a64ad51c115053325df"},
|
1266
|
-
]
|
1267
|
-
|
1268
|
-
[package.dependencies]
|
1269
|
-
beautifulsoup4 = ">=4.5,<5.0"
|
1270
|
-
mailbits = ">=0.2,<1.0"
|
1271
|
-
packaging = ">=20"
|
1272
|
-
pydantic = ">=2.0,<3.0"
|
1273
|
-
requests = ">=2.20,<3.0"
|
1274
|
-
|
1275
|
-
[package.extras]
|
1276
|
-
tqdm = ["tqdm"]
|
1277
|
-
|
1278
1082
|
[[package]]
|
1279
1083
|
name = "pyreadline3"
|
1280
1084
|
version = "3.4.1"
|
@@ -1287,62 +1091,113 @@ files = [
|
|
1287
1091
|
]
|
1288
1092
|
|
1289
1093
|
[[package]]
|
1290
|
-
name = "
|
1291
|
-
version = "
|
1292
|
-
description = "
|
1094
|
+
name = "pyserial"
|
1095
|
+
version = "3.5"
|
1096
|
+
description = "Python Serial Port Extension"
|
1097
|
+
optional = false
|
1098
|
+
python-versions = "*"
|
1099
|
+
files = [
|
1100
|
+
{file = "pyserial-3.5-py2.py3-none-any.whl", hash = "sha256:c4451db6ba391ca6ca299fb3ec7bae67a5c55dde170964c7a14ceefec02f2cf0"},
|
1101
|
+
{file = "pyserial-3.5.tar.gz", hash = "sha256:3c77e014170dfffbd816e6ffc205e9842efb10be9f58ec16d3e8675b4925cddb"},
|
1102
|
+
]
|
1103
|
+
|
1104
|
+
[package.extras]
|
1105
|
+
cp2110 = ["hidapi"]
|
1106
|
+
|
1107
|
+
[[package]]
|
1108
|
+
name = "pytest"
|
1109
|
+
version = "7.4.4"
|
1110
|
+
description = "pytest: simple powerful testing with Python"
|
1293
1111
|
optional = false
|
1294
1112
|
python-versions = ">=3.7"
|
1295
1113
|
files = [
|
1296
|
-
{file = "
|
1297
|
-
{file = "
|
1114
|
+
{file = "pytest-7.4.4-py3-none-any.whl", hash = "sha256:b090cdf5ed60bf4c45261be03239c2c1c22df034fbffe691abe93cd80cea01d8"},
|
1115
|
+
{file = "pytest-7.4.4.tar.gz", hash = "sha256:2cf0005922c6ace4a3e2ec8b4080eb0d9753fdc93107415332f50ce9e7994280"},
|
1298
1116
|
]
|
1299
1117
|
|
1300
1118
|
[package.dependencies]
|
1301
|
-
|
1119
|
+
colorama = {version = "*", markers = "sys_platform == \"win32\""}
|
1120
|
+
exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""}
|
1121
|
+
iniconfig = "*"
|
1122
|
+
packaging = "*"
|
1123
|
+
pluggy = ">=0.12,<2.0"
|
1124
|
+
tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""}
|
1302
1125
|
|
1303
1126
|
[package.extras]
|
1304
|
-
|
1305
|
-
dev = ["twine (>=3.4.1)"]
|
1127
|
+
testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"]
|
1306
1128
|
|
1307
1129
|
[[package]]
|
1308
|
-
name = "
|
1309
|
-
version = "
|
1310
|
-
description = "
|
1130
|
+
name = "pytest-github-actions-annotate-failures"
|
1131
|
+
version = "0.2.0"
|
1132
|
+
description = "pytest plugin to annotate failed tests with a workflow command for GitHub Actions"
|
1133
|
+
optional = false
|
1134
|
+
python-versions = ">=3.7"
|
1135
|
+
files = [
|
1136
|
+
{file = "pytest-github-actions-annotate-failures-0.2.0.tar.gz", hash = "sha256:844ab626d389496e44f960b42f0a72cce29ae06d363426d17ea9ae1b4bef2288"},
|
1137
|
+
{file = "pytest_github_actions_annotate_failures-0.2.0-py3-none-any.whl", hash = "sha256:8bcef65fed503faaa0524b59cfeccc8995130972dd7b008d64193cc41b9cde85"},
|
1138
|
+
]
|
1139
|
+
|
1140
|
+
[package.dependencies]
|
1141
|
+
pytest = ">=4.0.0"
|
1142
|
+
|
1143
|
+
[[package]]
|
1144
|
+
name = "pytest-json-report"
|
1145
|
+
version = "1.5.0"
|
1146
|
+
description = "A pytest plugin to report test results as JSON files"
|
1311
1147
|
optional = false
|
1312
1148
|
python-versions = "*"
|
1313
1149
|
files = [
|
1314
|
-
{file = "
|
1315
|
-
{file = "
|
1150
|
+
{file = "pytest-json-report-1.5.0.tar.gz", hash = "sha256:2dde3c647851a19b5f3700729e8310a6e66efb2077d674f27ddea3d34dc615de"},
|
1151
|
+
{file = "pytest_json_report-1.5.0-py3-none-any.whl", hash = "sha256:9897b68c910b12a2e48dd849f9a284b2c79a732a8a9cb398452ddd23d3c8c325"},
|
1152
|
+
]
|
1153
|
+
|
1154
|
+
[package.dependencies]
|
1155
|
+
pytest = ">=3.8.0"
|
1156
|
+
pytest-metadata = "*"
|
1157
|
+
|
1158
|
+
[[package]]
|
1159
|
+
name = "pytest-metadata"
|
1160
|
+
version = "3.1.1"
|
1161
|
+
description = "pytest plugin for test session metadata"
|
1162
|
+
optional = false
|
1163
|
+
python-versions = ">=3.8"
|
1164
|
+
files = [
|
1165
|
+
{file = "pytest_metadata-3.1.1-py3-none-any.whl", hash = "sha256:c8e0844db684ee1c798cfa38908d20d67d0463ecb6137c72e91f418558dd5f4b"},
|
1166
|
+
{file = "pytest_metadata-3.1.1.tar.gz", hash = "sha256:d2a29b0355fbc03f168aa96d41ff88b1a3b44a3b02acbe491801c98a048017c8"},
|
1316
1167
|
]
|
1317
1168
|
|
1169
|
+
[package.dependencies]
|
1170
|
+
pytest = ">=7.0.0"
|
1171
|
+
|
1318
1172
|
[package.extras]
|
1319
|
-
|
1173
|
+
test = ["black (>=22.1.0)", "flake8 (>=4.0.1)", "pre-commit (>=2.17.0)", "tox (>=3.24.5)"]
|
1320
1174
|
|
1321
1175
|
[[package]]
|
1322
|
-
name = "
|
1323
|
-
version = "
|
1324
|
-
description = "
|
1176
|
+
name = "pytest-mock"
|
1177
|
+
version = "3.14.0"
|
1178
|
+
description = "Thin-wrapper around the mock package for easier use with pytest"
|
1325
1179
|
optional = false
|
1326
|
-
python-versions = ">=3.
|
1180
|
+
python-versions = ">=3.8"
|
1327
1181
|
files = [
|
1328
|
-
{file = "
|
1329
|
-
{file = "
|
1182
|
+
{file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"},
|
1183
|
+
{file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"},
|
1330
1184
|
]
|
1331
1185
|
|
1186
|
+
[package.dependencies]
|
1187
|
+
pytest = ">=6.2.5"
|
1188
|
+
|
1332
1189
|
[package.extras]
|
1333
|
-
|
1334
|
-
pretttytable = ["prettytable (==3.3.0)"]
|
1335
|
-
ujson = ["ujson (==5.2.0)"]
|
1190
|
+
dev = ["pre-commit", "pytest-asyncio", "tox"]
|
1336
1191
|
|
1337
1192
|
[[package]]
|
1338
|
-
name = "
|
1339
|
-
version = "2.
|
1340
|
-
description = "
|
1193
|
+
name = "pyusb"
|
1194
|
+
version = "1.2.1"
|
1195
|
+
description = "Python USB access module"
|
1341
1196
|
optional = false
|
1342
|
-
python-versions = ">=
|
1197
|
+
python-versions = ">=3.6.0"
|
1343
1198
|
files = [
|
1344
|
-
{file = "
|
1345
|
-
{file = "
|
1199
|
+
{file = "pyusb-1.2.1-py3-none-any.whl", hash = "sha256:2b4c7cb86dbadf044dfb9d3a4ff69fd217013dbe78a792177a3feb172449ea36"},
|
1200
|
+
{file = "pyusb-1.2.1.tar.gz", hash = "sha256:a4cc7404a203144754164b8b40994e2849fde1cfff06b08492f12fff9d9de7b9"},
|
1346
1201
|
]
|
1347
1202
|
|
1348
1203
|
[[package]]
|
@@ -1405,6 +1260,20 @@ files = [
|
|
1405
1260
|
{file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"},
|
1406
1261
|
]
|
1407
1262
|
|
1263
|
+
[[package]]
|
1264
|
+
name = "readchar"
|
1265
|
+
version = "4.0.6"
|
1266
|
+
description = "Library to easily read single chars and key strokes"
|
1267
|
+
optional = false
|
1268
|
+
python-versions = ">=3.8"
|
1269
|
+
files = [
|
1270
|
+
{file = "readchar-4.0.6-py3-none-any.whl", hash = "sha256:b4b31dd35de4897be738f27e8f9f62426b5fedb54b648364987e30ae534b71bc"},
|
1271
|
+
{file = "readchar-4.0.6.tar.gz", hash = "sha256:e0dae942d3a746f8d5423f83dbad67efe704004baafe31b626477929faaee472"},
|
1272
|
+
]
|
1273
|
+
|
1274
|
+
[package.dependencies]
|
1275
|
+
setuptools = ">=41.0"
|
1276
|
+
|
1408
1277
|
[[package]]
|
1409
1278
|
name = "reedsolo"
|
1410
1279
|
version = "1.7.0"
|
@@ -1439,31 +1308,32 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"]
|
|
1439
1308
|
|
1440
1309
|
[[package]]
|
1441
1310
|
name = "rich"
|
1442
|
-
version = "13.7.
|
1311
|
+
version = "13.7.1"
|
1443
1312
|
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
|
1444
1313
|
optional = false
|
1445
1314
|
python-versions = ">=3.7.0"
|
1446
1315
|
files = [
|
1447
|
-
{file = "rich-13.7.
|
1448
|
-
{file = "rich-13.7.
|
1316
|
+
{file = "rich-13.7.1-py3-none-any.whl", hash = "sha256:4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222"},
|
1317
|
+
{file = "rich-13.7.1.tar.gz", hash = "sha256:9be308cb1fe2f1f57d67ce99e95af38a1e2bc71ad9813b0e247cf7ffbcc3a432"},
|
1449
1318
|
]
|
1450
1319
|
|
1451
1320
|
[package.dependencies]
|
1452
1321
|
markdown-it-py = ">=2.2.0"
|
1453
1322
|
pygments = ">=2.13.0,<3.0.0"
|
1323
|
+
typing-extensions = {version = ">=4.0.0,<5.0", markers = "python_version < \"3.9\""}
|
1454
1324
|
|
1455
1325
|
[package.extras]
|
1456
1326
|
jupyter = ["ipywidgets (>=7.5.1,<9)"]
|
1457
1327
|
|
1458
1328
|
[[package]]
|
1459
1329
|
name = "rich-click"
|
1460
|
-
version = "1.7.
|
1330
|
+
version = "1.7.4"
|
1461
1331
|
description = "Format click help output nicely with rich"
|
1462
1332
|
optional = false
|
1463
1333
|
python-versions = ">=3.7"
|
1464
1334
|
files = [
|
1465
|
-
{file = "rich-click-1.7.
|
1466
|
-
{file = "rich_click-1.7.
|
1335
|
+
{file = "rich-click-1.7.4.tar.gz", hash = "sha256:7ce5de8e4dc0333aec946113529b3eeb349f2e5d2fafee96b9edf8ee36a01395"},
|
1336
|
+
{file = "rich_click-1.7.4-py3-none-any.whl", hash = "sha256:e363655475c60fec5a3e16a1eb618118ed79e666c365a36006b107c17c93ac4e"},
|
1467
1337
|
]
|
1468
1338
|
|
1469
1339
|
[package.dependencies]
|
@@ -1474,21 +1344,35 @@ typing-extensions = "*"
|
|
1474
1344
|
[package.extras]
|
1475
1345
|
dev = ["flake8", "flake8-docstrings", "mypy", "packaging", "pre-commit", "pytest", "pytest-cov", "types-setuptools"]
|
1476
1346
|
|
1347
|
+
[[package]]
|
1348
|
+
name = "runs"
|
1349
|
+
version = "1.2.2"
|
1350
|
+
description = "🏃 Run a block of text as a subprocess 🏃"
|
1351
|
+
optional = false
|
1352
|
+
python-versions = ">=3.8"
|
1353
|
+
files = [
|
1354
|
+
{file = "runs-1.2.2-py3-none-any.whl", hash = "sha256:0980dcbc25aba1505f307ac4f0e9e92cbd0be2a15a1e983ee86c24c87b839dfd"},
|
1355
|
+
{file = "runs-1.2.2.tar.gz", hash = "sha256:9dc1815e2895cfb3a48317b173b9f1eac9ba5549b36a847b5cc60c3bf82ecef1"},
|
1356
|
+
]
|
1357
|
+
|
1358
|
+
[package.dependencies]
|
1359
|
+
xmod = "*"
|
1360
|
+
|
1477
1361
|
[[package]]
|
1478
1362
|
name = "setuptools"
|
1479
|
-
version = "69.
|
1363
|
+
version = "69.2.0"
|
1480
1364
|
description = "Easily download, build, install, upgrade, and uninstall Python packages"
|
1481
1365
|
optional = false
|
1482
1366
|
python-versions = ">=3.8"
|
1483
1367
|
files = [
|
1484
|
-
{file = "setuptools-69.
|
1485
|
-
{file = "setuptools-69.
|
1368
|
+
{file = "setuptools-69.2.0-py3-none-any.whl", hash = "sha256:c21c49fb1042386df081cb5d86759792ab89efca84cf114889191cd09aacc80c"},
|
1369
|
+
{file = "setuptools-69.2.0.tar.gz", hash = "sha256:0ff4183f8f42cd8fa3acea16c45205521a4ef28f73c6391d8a25e92893134f2e"},
|
1486
1370
|
]
|
1487
1371
|
|
1488
1372
|
[package.extras]
|
1489
1373
|
docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"]
|
1490
|
-
testing = ["build[virtualenv]", "filelock (>=3.4.0)", "
|
1491
|
-
testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging (>=23.
|
1374
|
+
testing = ["build[virtualenv]", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "mypy (==1.9)", "packaging (>=23.2)", "pip (>=19.1)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff (>=0.2.1)", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"]
|
1375
|
+
testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging (>=23.2)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"]
|
1492
1376
|
|
1493
1377
|
[[package]]
|
1494
1378
|
name = "six"
|
@@ -1523,20 +1407,6 @@ files = [
|
|
1523
1407
|
{file = "strip_ansi-0.1.1-py3-none-any.whl", hash = "sha256:9f55280e1b0ba84dac49d4f18aa6b51b90ff766b22e4918ffc01cc87b394ecd1"},
|
1524
1408
|
]
|
1525
1409
|
|
1526
|
-
[[package]]
|
1527
|
-
name = "tabulate"
|
1528
|
-
version = "0.9.0"
|
1529
|
-
description = "Pretty-print tabular data"
|
1530
|
-
optional = false
|
1531
|
-
python-versions = ">=3.7"
|
1532
|
-
files = [
|
1533
|
-
{file = "tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f"},
|
1534
|
-
{file = "tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"},
|
1535
|
-
]
|
1536
|
-
|
1537
|
-
[package.extras]
|
1538
|
-
widechars = ["wcwidth"]
|
1539
|
-
|
1540
1410
|
[[package]]
|
1541
1411
|
name = "tenacity"
|
1542
1412
|
version = "8.2.3"
|
@@ -1562,88 +1432,26 @@ files = [
|
|
1562
1432
|
{file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
|
1563
1433
|
]
|
1564
1434
|
|
1565
|
-
[[package]]
|
1566
|
-
name = "tomli-w"
|
1567
|
-
version = "1.0.0"
|
1568
|
-
description = "A lil' TOML writer"
|
1569
|
-
optional = false
|
1570
|
-
python-versions = ">=3.7"
|
1571
|
-
files = [
|
1572
|
-
{file = "tomli_w-1.0.0-py3-none-any.whl", hash = "sha256:9f2a07e8be30a0729e533ec968016807069991ae2fd921a78d42f429ae5f4463"},
|
1573
|
-
{file = "tomli_w-1.0.0.tar.gz", hash = "sha256:f463434305e0336248cac9c2dc8076b707d8a12d019dd349f5c1e382dd1ae1b9"},
|
1574
|
-
]
|
1575
|
-
|
1576
|
-
[[package]]
|
1577
|
-
name = "typed-config"
|
1578
|
-
version = "1.3.2"
|
1579
|
-
description = "Typed, extensible, dependency free configuration reader for Python projects for multiple config sources and working well in IDEs for great autocomplete performance."
|
1580
|
-
optional = false
|
1581
|
-
python-versions = ">=3.6.0"
|
1582
|
-
files = [
|
1583
|
-
{file = "typed-config-1.3.2.tar.gz", hash = "sha256:bb65dfa017dc423fa061089b2846a1c8bfd232c239f905ae374fabdf3e049aa2"},
|
1584
|
-
{file = "typed_config-1.3.2-py3-none-any.whl", hash = "sha256:fbfb44bcc4ad9178e607e196c735cb0cd95ae79c6f5acc16824e14618f03f2e6"},
|
1585
|
-
]
|
1586
|
-
|
1587
|
-
[[package]]
|
1588
|
-
name = "types-beautifulsoup4"
|
1589
|
-
version = "4.12.0.20240106"
|
1590
|
-
description = "Typing stubs for beautifulsoup4"
|
1591
|
-
optional = false
|
1592
|
-
python-versions = ">=3.8"
|
1593
|
-
files = [
|
1594
|
-
{file = "types-beautifulsoup4-4.12.0.20240106.tar.gz", hash = "sha256:98d628985b71b140bd3bc22a8cb0ab603c2f2d08f20d37925965eb4a21739be8"},
|
1595
|
-
{file = "types_beautifulsoup4-4.12.0.20240106-py3-none-any.whl", hash = "sha256:cbdd60ab8aeac737ac014431b6e921b43e84279c0405fdd25a6900bb0e71da5b"},
|
1596
|
-
]
|
1597
|
-
|
1598
|
-
[package.dependencies]
|
1599
|
-
types-html5lib = "*"
|
1600
|
-
|
1601
|
-
[[package]]
|
1602
|
-
name = "types-html5lib"
|
1603
|
-
version = "1.1.11.20240217"
|
1604
|
-
description = "Typing stubs for html5lib"
|
1605
|
-
optional = false
|
1606
|
-
python-versions = ">=3.8"
|
1607
|
-
files = [
|
1608
|
-
{file = "types-html5lib-1.1.11.20240217.tar.gz", hash = "sha256:e7c609fc1cfd33b666c515d15ca28936359c5a56d0b38d5a6266bf2f51caf4ec"},
|
1609
|
-
{file = "types_html5lib-1.1.11.20240217-py3-none-any.whl", hash = "sha256:dd556a6ceb7b7ea3b1c0acc39aac76bd3d079da72b192f075d8b1453f17493b5"},
|
1610
|
-
]
|
1611
|
-
|
1612
1435
|
[[package]]
|
1613
1436
|
name = "typing-extensions"
|
1614
|
-
version = "4.
|
1437
|
+
version = "4.10.0"
|
1615
1438
|
description = "Backported and Experimental Type Hints for Python 3.8+"
|
1616
1439
|
optional = false
|
1617
1440
|
python-versions = ">=3.8"
|
1618
1441
|
files = [
|
1619
|
-
{file = "typing_extensions-4.
|
1620
|
-
{file = "typing_extensions-4.
|
1442
|
+
{file = "typing_extensions-4.10.0-py3-none-any.whl", hash = "sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475"},
|
1443
|
+
{file = "typing_extensions-4.10.0.tar.gz", hash = "sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"},
|
1621
1444
|
]
|
1622
1445
|
|
1623
|
-
[[package]]
|
1624
|
-
name = "typing-inspect"
|
1625
|
-
version = "0.9.0"
|
1626
|
-
description = "Runtime inspection utilities for typing module."
|
1627
|
-
optional = false
|
1628
|
-
python-versions = "*"
|
1629
|
-
files = [
|
1630
|
-
{file = "typing_inspect-0.9.0-py3-none-any.whl", hash = "sha256:9ee6fc59062311ef8547596ab6b955e1b8aa46242d854bfc78f4f6b0eff35f9f"},
|
1631
|
-
{file = "typing_inspect-0.9.0.tar.gz", hash = "sha256:b23fc42ff6f6ef6954e4852c1fb512cdd18dbea03134f91f856a95ccc9461f78"},
|
1632
|
-
]
|
1633
|
-
|
1634
|
-
[package.dependencies]
|
1635
|
-
mypy-extensions = ">=0.3.0"
|
1636
|
-
typing-extensions = ">=3.7.4"
|
1637
|
-
|
1638
1446
|
[[package]]
|
1639
1447
|
name = "urllib3"
|
1640
|
-
version = "2.2.
|
1448
|
+
version = "2.2.1"
|
1641
1449
|
description = "HTTP library with thread-safe connection pooling, file post, and more."
|
1642
1450
|
optional = false
|
1643
1451
|
python-versions = ">=3.8"
|
1644
1452
|
files = [
|
1645
|
-
{file = "urllib3-2.2.
|
1646
|
-
{file = "urllib3-2.2.
|
1453
|
+
{file = "urllib3-2.2.1-py3-none-any.whl", hash = "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d"},
|
1454
|
+
{file = "urllib3-2.2.1.tar.gz", hash = "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19"},
|
1647
1455
|
]
|
1648
1456
|
|
1649
1457
|
[package.extras]
|
@@ -1653,19 +1461,16 @@ socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
|
|
1653
1461
|
zstd = ["zstandard (>=0.18.0)"]
|
1654
1462
|
|
1655
1463
|
[[package]]
|
1656
|
-
name = "
|
1657
|
-
version = "
|
1658
|
-
description = "
|
1464
|
+
name = "wcwidth"
|
1465
|
+
version = "0.2.13"
|
1466
|
+
description = "Measures the displayed width of unicode strings in a terminal"
|
1659
1467
|
optional = false
|
1660
|
-
python-versions = "
|
1468
|
+
python-versions = "*"
|
1661
1469
|
files = [
|
1662
|
-
{file = "
|
1663
|
-
{file = "
|
1470
|
+
{file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"},
|
1471
|
+
{file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"},
|
1664
1472
|
]
|
1665
1473
|
|
1666
|
-
[package.dependencies]
|
1667
|
-
click = "*"
|
1668
|
-
|
1669
1474
|
[[package]]
|
1670
1475
|
name = "win32-setctime"
|
1671
1476
|
version = "1.1.0"
|
@@ -1759,22 +1564,33 @@ files = [
|
|
1759
1564
|
{file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"},
|
1760
1565
|
]
|
1761
1566
|
|
1567
|
+
[[package]]
|
1568
|
+
name = "xmod"
|
1569
|
+
version = "1.8.1"
|
1570
|
+
description = "🌱 Turn any object into a module 🌱"
|
1571
|
+
optional = false
|
1572
|
+
python-versions = ">=3.8"
|
1573
|
+
files = [
|
1574
|
+
{file = "xmod-1.8.1-py3-none-any.whl", hash = "sha256:a24e9458a4853489042522bdca9e50ee2eac5ab75c809a91150a8a7f40670d48"},
|
1575
|
+
{file = "xmod-1.8.1.tar.gz", hash = "sha256:38c76486b9d672c546d57d8035df0beb7f4a9b088bc3fb2de5431ae821444377"},
|
1576
|
+
]
|
1577
|
+
|
1762
1578
|
[[package]]
|
1763
1579
|
name = "zipp"
|
1764
|
-
version = "3.
|
1580
|
+
version = "3.18.1"
|
1765
1581
|
description = "Backport of pathlib-compatible object wrapper for zip files"
|
1766
1582
|
optional = false
|
1767
1583
|
python-versions = ">=3.8"
|
1768
1584
|
files = [
|
1769
|
-
{file = "zipp-3.
|
1770
|
-
{file = "zipp-3.
|
1585
|
+
{file = "zipp-3.18.1-py3-none-any.whl", hash = "sha256:206f5a15f2af3dbaee80769fb7dc6f249695e940acca08dfb2a4769fe61e538b"},
|
1586
|
+
{file = "zipp-3.18.1.tar.gz", hash = "sha256:2884ed22e7d8961de1c9a05142eb69a247f120291bc0206a00a7642f09b5b715"},
|
1771
1587
|
]
|
1772
1588
|
|
1773
1589
|
[package.extras]
|
1774
|
-
docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (
|
1775
|
-
testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-
|
1590
|
+
docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
1591
|
+
testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy", "pytest-ruff (>=0.2.1)"]
|
1776
1592
|
|
1777
1593
|
[metadata]
|
1778
1594
|
lock-version = "2.0"
|
1779
|
-
python-versions = ">=3.
|
1780
|
-
content-hash = "
|
1595
|
+
python-versions = ">=3.8.1,<4.0"
|
1596
|
+
content-hash = "a20bd48ff16e5a5b34dad9f9f29abccc38b4b94b23de3ac4069af403f28b9ce3"
|