micropython-stubber 1.20.0__py3-none-any.whl → 1.20.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.20.0.dist-info → micropython_stubber-1.20.2.dist-info}/METADATA +6 -6
- {micropython_stubber-1.20.0.dist-info → micropython_stubber-1.20.2.dist-info}/RECORD +58 -51
- mpflash/README.md +54 -35
- mpflash/libusb_flash.ipynb +203 -203
- mpflash/mpflash/add_firmware.py +98 -0
- mpflash/mpflash/ask_input.py +106 -114
- mpflash/mpflash/cli_download.py +58 -37
- mpflash/mpflash/cli_flash.py +77 -35
- mpflash/mpflash/cli_group.py +14 -12
- mpflash/mpflash/cli_list.py +40 -4
- mpflash/mpflash/cli_main.py +20 -8
- mpflash/mpflash/common.py +125 -12
- mpflash/mpflash/config.py +2 -0
- mpflash/mpflash/connected.py +74 -0
- mpflash/mpflash/download.py +67 -50
- mpflash/mpflash/downloaded.py +9 -9
- mpflash/mpflash/flash.py +2 -2
- mpflash/mpflash/flash_esp.py +2 -2
- mpflash/mpflash/flash_uf2.py +16 -8
- mpflash/mpflash/flash_uf2_linux.py +5 -16
- mpflash/mpflash/flash_uf2_macos.py +78 -0
- mpflash/mpflash/flash_uf2_windows.py +1 -1
- mpflash/mpflash/list.py +58 -57
- mpflash/mpflash/mpboard_id/__init__.py +37 -44
- mpflash/mpflash/mpboard_id/add_boards.py +255 -0
- mpflash/mpflash/mpboard_id/board.py +37 -0
- mpflash/mpflash/mpboard_id/board_id.py +50 -43
- mpflash/mpflash/mpboard_id/board_info.zip +0 -0
- mpflash/mpflash/mpboard_id/store.py +42 -0
- mpflash/mpflash/mpremoteboard/__init__.py +18 -6
- mpflash/mpflash/mpremoteboard/runner.py +12 -12
- mpflash/mpflash/uf2disk.py +12 -0
- mpflash/mpflash/vendor/basicgit.py +288 -0
- mpflash/mpflash/vendor/dfu.py +1 -0
- mpflash/mpflash/vendor/versions.py +7 -3
- mpflash/mpflash/worklist.py +71 -48
- mpflash/poetry.lock +163 -137
- mpflash/pyproject.toml +18 -15
- stubber/__init__.py +1 -1
- stubber/board/createstubs.py +4 -3
- stubber/board/createstubs_db.py +5 -7
- stubber/board/createstubs_db_min.py +1 -1
- stubber/board/createstubs_db_mpy.mpy +0 -0
- stubber/board/createstubs_mem.py +6 -7
- stubber/board/createstubs_mem_min.py +1 -1
- stubber/board/createstubs_mem_mpy.mpy +0 -0
- stubber/board/createstubs_min.py +2 -2
- stubber/board/createstubs_mpy.mpy +0 -0
- stubber/board/modulelist.txt +1 -0
- stubber/commands/get_core_cmd.py +7 -6
- stubber/commands/get_docstubs_cmd.py +8 -3
- stubber/commands/get_frozen_cmd.py +5 -2
- stubber/publish/publish.py +18 -7
- stubber/utils/makeversionhdr.py +3 -2
- stubber/utils/versions.py +2 -1
- mpflash/mpflash/mpboard_id/board_info.csv +0 -2213
- mpflash/mpflash/mpboard_id/board_info.json +0 -19910
- {micropython_stubber-1.20.0.dist-info → micropython_stubber-1.20.2.dist-info}/LICENSE +0 -0
- {micropython_stubber-1.20.0.dist-info → micropython_stubber-1.20.2.dist-info}/WHEEL +0 -0
- {micropython_stubber-1.20.0.dist-info → micropython_stubber-1.20.2.dist-info}/entry_points.txt +0 -0
mpflash/poetry.lock
CHANGED
@@ -211,13 +211,13 @@ files = [
|
|
211
211
|
|
212
212
|
[[package]]
|
213
213
|
name = "bitstring"
|
214
|
-
version = "4.2.
|
214
|
+
version = "4.2.3"
|
215
215
|
description = "Simple construction, analysis and modification of binary data."
|
216
216
|
optional = false
|
217
217
|
python-versions = ">=3.8"
|
218
218
|
files = [
|
219
|
-
{file = "bitstring-4.2.
|
220
|
-
{file = "bitstring-4.2.
|
219
|
+
{file = "bitstring-4.2.3-py3-none-any.whl", hash = "sha256:20ed0036e2fcf0323acb0f92f0b7b178516a080f3e91061470aa019ac4ede404"},
|
220
|
+
{file = "bitstring-4.2.3.tar.gz", hash = "sha256:e0c447af3fda0d114f77b88c2d199f02f97ee7e957e6d719f40f41cf15fbb897"},
|
221
221
|
]
|
222
222
|
|
223
223
|
[package.dependencies]
|
@@ -249,6 +249,17 @@ files = [
|
|
249
249
|
{file = "blkinfo-0.2.0.tar.gz", hash = "sha256:322a906595f78832d6725ac74a0b9fd2794df3388584d9f05c1a2f8e19324851"},
|
250
250
|
]
|
251
251
|
|
252
|
+
[[package]]
|
253
|
+
name = "cachetools"
|
254
|
+
version = "5.3.3"
|
255
|
+
description = "Extensible memoizing collections and decorators"
|
256
|
+
optional = false
|
257
|
+
python-versions = ">=3.7"
|
258
|
+
files = [
|
259
|
+
{file = "cachetools-5.3.3-py3-none-any.whl", hash = "sha256:0abad1021d3f8325b2fc1d2e9c8b9c9d57b04c3932657a72465447332c24d945"},
|
260
|
+
{file = "cachetools-5.3.3.tar.gz", hash = "sha256:ba29e2dfa0b8b556606f097407ed1aa62080ee108ab0dc5ec9d6a723a007d105"},
|
261
|
+
]
|
262
|
+
|
252
263
|
[[package]]
|
253
264
|
name = "certifi"
|
254
265
|
version = "2024.2.2"
|
@@ -450,63 +461,63 @@ files = [
|
|
450
461
|
|
451
462
|
[[package]]
|
452
463
|
name = "coverage"
|
453
|
-
version = "7.5.
|
464
|
+
version = "7.5.2"
|
454
465
|
description = "Code coverage measurement for Python"
|
455
466
|
optional = false
|
456
467
|
python-versions = ">=3.8"
|
457
468
|
files = [
|
458
|
-
{file = "coverage-7.5.
|
459
|
-
{file = "coverage-7.5.
|
460
|
-
{file = "coverage-7.5.
|
461
|
-
{file = "coverage-7.5.
|
462
|
-
{file = "coverage-7.5.
|
463
|
-
{file = "coverage-7.5.
|
464
|
-
{file = "coverage-7.5.
|
465
|
-
{file = "coverage-7.5.
|
466
|
-
{file = "coverage-7.5.
|
467
|
-
{file = "coverage-7.5.
|
468
|
-
{file = "coverage-7.5.
|
469
|
-
{file = "coverage-7.5.
|
470
|
-
{file = "coverage-7.5.
|
471
|
-
{file = "coverage-7.5.
|
472
|
-
{file = "coverage-7.5.
|
473
|
-
{file = "coverage-7.5.
|
474
|
-
{file = "coverage-7.5.
|
475
|
-
{file = "coverage-7.5.
|
476
|
-
{file = "coverage-7.5.
|
477
|
-
{file = "coverage-7.5.
|
478
|
-
{file = "coverage-7.5.
|
479
|
-
{file = "coverage-7.5.
|
480
|
-
{file = "coverage-7.5.
|
481
|
-
{file = "coverage-7.5.
|
482
|
-
{file = "coverage-7.5.
|
483
|
-
{file = "coverage-7.5.
|
484
|
-
{file = "coverage-7.5.
|
485
|
-
{file = "coverage-7.5.
|
486
|
-
{file = "coverage-7.5.
|
487
|
-
{file = "coverage-7.5.
|
488
|
-
{file = "coverage-7.5.
|
489
|
-
{file = "coverage-7.5.
|
490
|
-
{file = "coverage-7.5.
|
491
|
-
{file = "coverage-7.5.
|
492
|
-
{file = "coverage-7.5.
|
493
|
-
{file = "coverage-7.5.
|
494
|
-
{file = "coverage-7.5.
|
495
|
-
{file = "coverage-7.5.
|
496
|
-
{file = "coverage-7.5.
|
497
|
-
{file = "coverage-7.5.
|
498
|
-
{file = "coverage-7.5.
|
499
|
-
{file = "coverage-7.5.
|
500
|
-
{file = "coverage-7.5.
|
501
|
-
{file = "coverage-7.5.
|
502
|
-
{file = "coverage-7.5.
|
503
|
-
{file = "coverage-7.5.
|
504
|
-
{file = "coverage-7.5.
|
505
|
-
{file = "coverage-7.5.
|
506
|
-
{file = "coverage-7.5.
|
507
|
-
{file = "coverage-7.5.
|
508
|
-
{file = "coverage-7.5.
|
509
|
-
{file = "coverage-7.5.
|
469
|
+
{file = "coverage-7.5.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:554c7327bf0fd688050348e22db7c8e163fb7219f3ecdd4732d7ed606b417263"},
|
470
|
+
{file = "coverage-7.5.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d0305e02e40c7cfea5d08d6368576537a74c0eea62b77633179748d3519d6705"},
|
471
|
+
{file = "coverage-7.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:829fb55ad437d757c70d5b1c51cfda9377f31506a0a3f3ac282bc6a387d6a5f1"},
|
472
|
+
{file = "coverage-7.5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:894b1acded706f1407a662d08e026bfd0ff1e59e9bd32062fea9d862564cfb65"},
|
473
|
+
{file = "coverage-7.5.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe76d6dee5e4febefa83998b17926df3a04e5089e3d2b1688c74a9157798d7a2"},
|
474
|
+
{file = "coverage-7.5.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:c7ebf2a37e4f5fea3c1a11e1f47cea7d75d0f2d8ef69635ddbd5c927083211fc"},
|
475
|
+
{file = "coverage-7.5.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:20e611fc36e1a0fc7bbf957ef9c635c8807d71fbe5643e51b2769b3cc0fb0b51"},
|
476
|
+
{file = "coverage-7.5.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7c5c5b7ae2763533152880d5b5b451acbc1089ade2336b710a24b2b0f5239d20"},
|
477
|
+
{file = "coverage-7.5.2-cp310-cp310-win32.whl", hash = "sha256:1e4225990a87df898e40ca31c9e830c15c2c53b1d33df592bc8ef314d71f0281"},
|
478
|
+
{file = "coverage-7.5.2-cp310-cp310-win_amd64.whl", hash = "sha256:976cd92d9420e6e2aa6ce6a9d61f2b490e07cb468968adf371546b33b829284b"},
|
479
|
+
{file = "coverage-7.5.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5997d418c219dcd4dcba64e50671cca849aaf0dac3d7a2eeeb7d651a5bd735b8"},
|
480
|
+
{file = "coverage-7.5.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ec27e93bbf5976f0465e8936f02eb5add99bbe4e4e7b233607e4d7622912d68d"},
|
481
|
+
{file = "coverage-7.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f11f98753800eb1ec872562a398081f6695f91cd01ce39819e36621003ec52a"},
|
482
|
+
{file = "coverage-7.5.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e34680049eecb30b6498784c9637c1c74277dcb1db75649a152f8004fbd6646"},
|
483
|
+
{file = "coverage-7.5.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e12536446ad4527ac8ed91d8a607813085683bcce27af69e3b31cd72b3c5960"},
|
484
|
+
{file = "coverage-7.5.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:3d3f7744b8a8079d69af69d512e5abed4fb473057625588ce126088e50d05493"},
|
485
|
+
{file = "coverage-7.5.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:431a3917e32223fcdb90b79fe60185864a9109631ebc05f6c5aa03781a00b513"},
|
486
|
+
{file = "coverage-7.5.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a7c6574225f34ce45466f04751d957b5c5e6b69fca9351db017c9249786172ce"},
|
487
|
+
{file = "coverage-7.5.2-cp311-cp311-win32.whl", hash = "sha256:2b144d142ec9987276aeff1326edbc0df8ba4afbd7232f0ca10ad57a115e95b6"},
|
488
|
+
{file = "coverage-7.5.2-cp311-cp311-win_amd64.whl", hash = "sha256:900532713115ac58bc3491b9d2b52704a05ed408ba0918d57fd72c94bc47fba1"},
|
489
|
+
{file = "coverage-7.5.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:9a42970ce74c88bdf144df11c52c5cf4ad610d860de87c0883385a1c9d9fa4ab"},
|
490
|
+
{file = "coverage-7.5.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:26716a1118c6ce2188283b4b60a898c3be29b480acbd0a91446ced4fe4e780d8"},
|
491
|
+
{file = "coverage-7.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:60b66b0363c5a2a79fba3d1cd7430c25bbd92c923d031cae906bdcb6e054d9a2"},
|
492
|
+
{file = "coverage-7.5.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5d22eba19273b2069e4efeff88c897a26bdc64633cbe0357a198f92dca94268"},
|
493
|
+
{file = "coverage-7.5.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3bb5b92a0ab3d22dfdbfe845e2fef92717b067bdf41a5b68c7e3e857c0cff1a4"},
|
494
|
+
{file = "coverage-7.5.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1aef719b6559b521ae913ddeb38f5048c6d1a3d366865e8b320270b7bc4693c2"},
|
495
|
+
{file = "coverage-7.5.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8809c0ea0e8454f756e3bd5c36d04dddf222989216788a25bfd6724bfcee342c"},
|
496
|
+
{file = "coverage-7.5.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1acc2e2ef098a1d4bf535758085f508097316d738101a97c3f996bccba963ea5"},
|
497
|
+
{file = "coverage-7.5.2-cp312-cp312-win32.whl", hash = "sha256:97de509043d3f0f2b2cd171bdccf408f175c7f7a99d36d566b1ae4dd84107985"},
|
498
|
+
{file = "coverage-7.5.2-cp312-cp312-win_amd64.whl", hash = "sha256:8941e35a0e991a7a20a1fa3e3182f82abe357211f2c335a9e6007067c3392fcf"},
|
499
|
+
{file = "coverage-7.5.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5662bf0f6fb6757f5c2d6279c541a5af55a39772c2362ed0920b27e3ce0e21f7"},
|
500
|
+
{file = "coverage-7.5.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3d9c62cff2ffb4c2a95328488fd7aa96a7a4b34873150650fe76b19c08c9c792"},
|
501
|
+
{file = "coverage-7.5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:74eeaa13e8200ad72fca9c5f37395fb310915cec6f1682b21375e84fd9770e84"},
|
502
|
+
{file = "coverage-7.5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f29bf497d51a5077994b265e976d78b09d9d0dff6ca5763dbb4804534a5d380"},
|
503
|
+
{file = "coverage-7.5.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f96aa94739593ae0707eda9813ce363a0a0374a810ae0eced383340fc4a1f73"},
|
504
|
+
{file = "coverage-7.5.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:51b6cee539168a912b4b3b040e4042b9e2c9a7ad9c8546c09e4eaeff3eacba6b"},
|
505
|
+
{file = "coverage-7.5.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:59a75e6aa5c25b50b5a1499f9718f2edff54257f545718c4fb100f48d570ead4"},
|
506
|
+
{file = "coverage-7.5.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:29da75ce20cb0a26d60e22658dd3230713c6c05a3465dd8ad040ffc991aea318"},
|
507
|
+
{file = "coverage-7.5.2-cp38-cp38-win32.whl", hash = "sha256:23f2f16958b16152b43a39a5ecf4705757ddd284b3b17a77da3a62aef9c057ef"},
|
508
|
+
{file = "coverage-7.5.2-cp38-cp38-win_amd64.whl", hash = "sha256:9e41c94035e5cdb362beed681b58a707e8dc29ea446ea1713d92afeded9d1ddd"},
|
509
|
+
{file = "coverage-7.5.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:06d96b9b19bbe7f049c2be3c4f9e06737ec6d8ef8933c7c3a4c557ef07936e46"},
|
510
|
+
{file = "coverage-7.5.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:878243e1206828908a6b4a9ca7b1aa8bee9eb129bf7186fc381d2646f4524ce9"},
|
511
|
+
{file = "coverage-7.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:482df956b055d3009d10fce81af6ffab28215d7ed6ad4a15e5c8e67cb7c5251c"},
|
512
|
+
{file = "coverage-7.5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a35c97af60a5492e9e89f8b7153fe24eadfd61cb3a2fb600df1a25b5dab34b7e"},
|
513
|
+
{file = "coverage-7.5.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24bb4c7859a3f757a116521d4d3a8a82befad56ea1bdacd17d6aafd113b0071e"},
|
514
|
+
{file = "coverage-7.5.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e1046aab24c48c694f0793f669ac49ea68acde6a0798ac5388abe0a5615b5ec8"},
|
515
|
+
{file = "coverage-7.5.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:448ec61ea9ea7916d5579939362509145caaecf03161f6f13e366aebb692a631"},
|
516
|
+
{file = "coverage-7.5.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4a00bd5ba8f1a4114720bef283cf31583d6cb1c510ce890a6da6c4268f0070b7"},
|
517
|
+
{file = "coverage-7.5.2-cp39-cp39-win32.whl", hash = "sha256:9f805481d5eff2a96bac4da1570ef662bf970f9a16580dc2c169c8c3183fa02b"},
|
518
|
+
{file = "coverage-7.5.2-cp39-cp39-win_amd64.whl", hash = "sha256:2c79f058e7bec26b5295d53b8c39ecb623448c74ccc8378631f5cb5c16a7e02c"},
|
519
|
+
{file = "coverage-7.5.2-pp38.pp39.pp310-none-any.whl", hash = "sha256:40dbb8e7727560fe8ab65efcddfec1ae25f30ef02e2f2e5d78cfb52a66781ec5"},
|
520
|
+
{file = "coverage-7.5.2.tar.gz", hash = "sha256:13017a63b0e499c59b5ba94a8542fb62864ba3016127d1e4ef30d354fc2b00e9"},
|
510
521
|
]
|
511
522
|
|
512
523
|
[package.extras]
|
@@ -514,43 +525,43 @@ toml = ["tomli"]
|
|
514
525
|
|
515
526
|
[[package]]
|
516
527
|
name = "cryptography"
|
517
|
-
version = "42.0.
|
528
|
+
version = "42.0.7"
|
518
529
|
description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
|
519
530
|
optional = false
|
520
531
|
python-versions = ">=3.7"
|
521
532
|
files = [
|
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.
|
549
|
-
{file = "cryptography-42.0.
|
550
|
-
{file = "cryptography-42.0.
|
551
|
-
{file = "cryptography-42.0.
|
552
|
-
{file = "cryptography-42.0.
|
553
|
-
{file = "cryptography-42.0.
|
533
|
+
{file = "cryptography-42.0.7-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477"},
|
534
|
+
{file = "cryptography-42.0.7-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a"},
|
535
|
+
{file = "cryptography-42.0.7-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604"},
|
536
|
+
{file = "cryptography-42.0.7-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8"},
|
537
|
+
{file = "cryptography-42.0.7-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55"},
|
538
|
+
{file = "cryptography-42.0.7-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc"},
|
539
|
+
{file = "cryptography-42.0.7-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2"},
|
540
|
+
{file = "cryptography-42.0.7-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13"},
|
541
|
+
{file = "cryptography-42.0.7-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da"},
|
542
|
+
{file = "cryptography-42.0.7-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7"},
|
543
|
+
{file = "cryptography-42.0.7-cp37-abi3-win32.whl", hash = "sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b"},
|
544
|
+
{file = "cryptography-42.0.7-cp37-abi3-win_amd64.whl", hash = "sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678"},
|
545
|
+
{file = "cryptography-42.0.7-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4"},
|
546
|
+
{file = "cryptography-42.0.7-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858"},
|
547
|
+
{file = "cryptography-42.0.7-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785"},
|
548
|
+
{file = "cryptography-42.0.7-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda"},
|
549
|
+
{file = "cryptography-42.0.7-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9"},
|
550
|
+
{file = "cryptography-42.0.7-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e"},
|
551
|
+
{file = "cryptography-42.0.7-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f"},
|
552
|
+
{file = "cryptography-42.0.7-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1"},
|
553
|
+
{file = "cryptography-42.0.7-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886"},
|
554
|
+
{file = "cryptography-42.0.7-cp39-abi3-win32.whl", hash = "sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda"},
|
555
|
+
{file = "cryptography-42.0.7-cp39-abi3-win_amd64.whl", hash = "sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b"},
|
556
|
+
{file = "cryptography-42.0.7-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82"},
|
557
|
+
{file = "cryptography-42.0.7-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60"},
|
558
|
+
{file = "cryptography-42.0.7-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd"},
|
559
|
+
{file = "cryptography-42.0.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582"},
|
560
|
+
{file = "cryptography-42.0.7-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562"},
|
561
|
+
{file = "cryptography-42.0.7-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14"},
|
562
|
+
{file = "cryptography-42.0.7-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9"},
|
563
|
+
{file = "cryptography-42.0.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68"},
|
564
|
+
{file = "cryptography-42.0.7.tar.gz", hash = "sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2"},
|
554
565
|
]
|
555
566
|
|
556
567
|
[package.dependencies]
|
@@ -785,6 +796,23 @@ files = [
|
|
785
796
|
[package.dependencies]
|
786
797
|
attrs = ">=19.2.0"
|
787
798
|
|
799
|
+
[[package]]
|
800
|
+
name = "jsons"
|
801
|
+
version = "1.6.3"
|
802
|
+
description = "For serializing Python objects to JSON (dicts) and back"
|
803
|
+
optional = false
|
804
|
+
python-versions = ">=3.5"
|
805
|
+
files = [
|
806
|
+
{file = "jsons-1.6.3-py3-none-any.whl", hash = "sha256:f07f8919316f72a3843c7ca6cc6c900513089f10092626934d1bfe4b5cf15401"},
|
807
|
+
{file = "jsons-1.6.3.tar.gz", hash = "sha256:cd5815c7c6790ae11c70ad9978e0aa850d0d08a643a5105cc604eac8b29a30d7"},
|
808
|
+
]
|
809
|
+
|
810
|
+
[package.dependencies]
|
811
|
+
typish = ">=1.9.2"
|
812
|
+
|
813
|
+
[package.extras]
|
814
|
+
test = ["attrs", "codecov", "coverage", "dataclasses", "pytest", "scons", "tzdata"]
|
815
|
+
|
788
816
|
[[package]]
|
789
817
|
name = "libusb"
|
790
818
|
version = "1.0.27"
|
@@ -921,13 +949,13 @@ test = ["deepdiff (>=6.7.1)", "rich (>=13.7.0)"]
|
|
921
949
|
|
922
950
|
[[package]]
|
923
951
|
name = "platformdirs"
|
924
|
-
version = "4.2.
|
952
|
+
version = "4.2.2"
|
925
953
|
description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`."
|
926
954
|
optional = false
|
927
955
|
python-versions = ">=3.8"
|
928
956
|
files = [
|
929
|
-
{file = "platformdirs-4.2.
|
930
|
-
{file = "platformdirs-4.2.
|
957
|
+
{file = "platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee"},
|
958
|
+
{file = "platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3"},
|
931
959
|
]
|
932
960
|
|
933
961
|
[package.extras]
|
@@ -1021,17 +1049,16 @@ urllib3 = ">=1.26.0"
|
|
1021
1049
|
|
1022
1050
|
[[package]]
|
1023
1051
|
name = "pygments"
|
1024
|
-
version = "2.
|
1052
|
+
version = "2.18.0"
|
1025
1053
|
description = "Pygments is a syntax highlighting package written in Python."
|
1026
1054
|
optional = false
|
1027
|
-
python-versions = ">=3.
|
1055
|
+
python-versions = ">=3.8"
|
1028
1056
|
files = [
|
1029
|
-
{file = "pygments-2.
|
1030
|
-
{file = "pygments-2.
|
1057
|
+
{file = "pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a"},
|
1058
|
+
{file = "pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199"},
|
1031
1059
|
]
|
1032
1060
|
|
1033
1061
|
[package.extras]
|
1034
|
-
plugins = ["importlib-metadata"]
|
1035
1062
|
windows-terminal = ["colorama (>=0.4.6)"]
|
1036
1063
|
|
1037
1064
|
[[package]]
|
@@ -1263,18 +1290,15 @@ files = [
|
|
1263
1290
|
|
1264
1291
|
[[package]]
|
1265
1292
|
name = "readchar"
|
1266
|
-
version = "4.0
|
1293
|
+
version = "4.1.0"
|
1267
1294
|
description = "Library to easily read single chars and key strokes"
|
1268
1295
|
optional = false
|
1269
1296
|
python-versions = ">=3.8"
|
1270
1297
|
files = [
|
1271
|
-
{file = "readchar-4.0
|
1272
|
-
{file = "readchar-4.0.
|
1298
|
+
{file = "readchar-4.1.0-py3-none-any.whl", hash = "sha256:d163680656b34f263fb5074023db44b999c68ff31ab394445ebfd1a2a41fe9a2"},
|
1299
|
+
{file = "readchar-4.1.0.tar.gz", hash = "sha256:6f44d1b5f0fd93bd93236eac7da39609f15df647ab9cea39f5bc7478b3344b99"},
|
1273
1300
|
]
|
1274
1301
|
|
1275
|
-
[package.dependencies]
|
1276
|
-
setuptools = ">=41.0"
|
1277
|
-
|
1278
1302
|
[[package]]
|
1279
1303
|
name = "reedsolo"
|
1280
1304
|
version = "1.7.0"
|
@@ -1288,13 +1312,13 @@ files = [
|
|
1288
1312
|
|
1289
1313
|
[[package]]
|
1290
1314
|
name = "requests"
|
1291
|
-
version = "2.
|
1315
|
+
version = "2.32.2"
|
1292
1316
|
description = "Python HTTP for Humans."
|
1293
1317
|
optional = false
|
1294
|
-
python-versions = ">=3.
|
1318
|
+
python-versions = ">=3.8"
|
1295
1319
|
files = [
|
1296
|
-
{file = "requests-2.
|
1297
|
-
{file = "requests-2.
|
1320
|
+
{file = "requests-2.32.2-py3-none-any.whl", hash = "sha256:fc06670dd0ed212426dfeb94fc1b983d917c4f9847c863f313c9dfaaffb7c23c"},
|
1321
|
+
{file = "requests-2.32.2.tar.gz", hash = "sha256:dd951ff5ecf3e3b3aa26b40703ba77495dab41da839ae72ef3c8e5d8e2433289"},
|
1298
1322
|
]
|
1299
1323
|
|
1300
1324
|
[package.dependencies]
|
@@ -1328,22 +1352,23 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"]
|
|
1328
1352
|
|
1329
1353
|
[[package]]
|
1330
1354
|
name = "rich-click"
|
1331
|
-
version = "1.
|
1355
|
+
version = "1.8.2"
|
1332
1356
|
description = "Format click help output nicely with rich"
|
1333
1357
|
optional = false
|
1334
1358
|
python-versions = ">=3.7"
|
1335
1359
|
files = [
|
1336
|
-
{file = "
|
1337
|
-
{file = "rich_click-1.
|
1360
|
+
{file = "rich_click-1.8.2-py3-none-any.whl", hash = "sha256:b57856f304e4fe0394b82d7ce0784450758f8c8b4e201ccc4320501cc201806b"},
|
1361
|
+
{file = "rich_click-1.8.2.tar.gz", hash = "sha256:8e29bdede858b59aa2859a1ab1c4ccbd39ed7ed5870262dae756fba6b5dc72e8"},
|
1338
1362
|
]
|
1339
1363
|
|
1340
1364
|
[package.dependencies]
|
1341
1365
|
click = ">=7"
|
1342
|
-
rich = ">=10.7
|
1366
|
+
rich = ">=10.7"
|
1343
1367
|
typing-extensions = "*"
|
1344
1368
|
|
1345
1369
|
[package.extras]
|
1346
|
-
dev = ["
|
1370
|
+
dev = ["mypy", "packaging", "pre-commit", "pytest", "pytest-cov", "rich-codex", "ruff", "types-setuptools"]
|
1371
|
+
docs = ["markdown-include", "mkdocs", "mkdocs-glightbox", "mkdocs-material-extensions", "mkdocs-material[imaging] (>=9.5.18,<9.6.0)", "mkdocs-rss-plugin", "mkdocstrings[python]", "rich-codex"]
|
1347
1372
|
|
1348
1373
|
[[package]]
|
1349
1374
|
name = "runs"
|
@@ -1361,19 +1386,18 @@ xmod = "*"
|
|
1361
1386
|
|
1362
1387
|
[[package]]
|
1363
1388
|
name = "setuptools"
|
1364
|
-
version = "
|
1389
|
+
version = "70.0.0"
|
1365
1390
|
description = "Easily download, build, install, upgrade, and uninstall Python packages"
|
1366
1391
|
optional = false
|
1367
1392
|
python-versions = ">=3.8"
|
1368
1393
|
files = [
|
1369
|
-
{file = "setuptools-
|
1370
|
-
{file = "setuptools-
|
1394
|
+
{file = "setuptools-70.0.0-py3-none-any.whl", hash = "sha256:54faa7f2e8d2d11bcd2c07bed282eef1046b5c080d1c32add737d7b5817b1ad4"},
|
1395
|
+
{file = "setuptools-70.0.0.tar.gz", hash = "sha256:f211a66637b8fa059bb28183da127d4e86396c991a942b028c6650d4319c3fd0"},
|
1371
1396
|
]
|
1372
1397
|
|
1373
1398
|
[package.extras]
|
1374
|
-
docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"]
|
1375
|
-
testing = ["build[virtualenv]", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.
|
1376
|
-
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"]
|
1399
|
+
docs = ["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"]
|
1400
|
+
testing = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "mypy (==1.9)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.1)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (>=0.2.1)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"]
|
1377
1401
|
|
1378
1402
|
[[package]]
|
1379
1403
|
name = "six"
|
@@ -1397,17 +1421,6 @@ files = [
|
|
1397
1421
|
{file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"},
|
1398
1422
|
]
|
1399
1423
|
|
1400
|
-
[[package]]
|
1401
|
-
name = "strip-ansi"
|
1402
|
-
version = "0.1.1"
|
1403
|
-
description = "Strip ANSI escape sequences from a string"
|
1404
|
-
optional = false
|
1405
|
-
python-versions = ">=3.6,<4.0"
|
1406
|
-
files = [
|
1407
|
-
{file = "strip-ansi-0.1.1.tar.gz", hash = "sha256:5d60f239cc8a37fdd52b43c3e66e893d45ba0423115db59eca0d2eef83b07729"},
|
1408
|
-
{file = "strip_ansi-0.1.1-py3-none-any.whl", hash = "sha256:9f55280e1b0ba84dac49d4f18aa6b51b90ff766b22e4918ffc01cc87b394ecd1"},
|
1409
|
-
]
|
1410
|
-
|
1411
1424
|
[[package]]
|
1412
1425
|
name = "tenacity"
|
1413
1426
|
version = "8.2.3"
|
@@ -1435,15 +1448,28 @@ files = [
|
|
1435
1448
|
|
1436
1449
|
[[package]]
|
1437
1450
|
name = "typing-extensions"
|
1438
|
-
version = "4.
|
1451
|
+
version = "4.12.0"
|
1439
1452
|
description = "Backported and Experimental Type Hints for Python 3.8+"
|
1440
1453
|
optional = false
|
1441
1454
|
python-versions = ">=3.8"
|
1442
1455
|
files = [
|
1443
|
-
{file = "typing_extensions-4.
|
1444
|
-
{file = "typing_extensions-4.
|
1456
|
+
{file = "typing_extensions-4.12.0-py3-none-any.whl", hash = "sha256:b349c66bea9016ac22978d800cfff206d5f9816951f12a7d0ec5578b0a819594"},
|
1457
|
+
{file = "typing_extensions-4.12.0.tar.gz", hash = "sha256:8cbcdc8606ebcb0d95453ad7dc5065e6237b6aa230a31e81d0f440c30fed5fd8"},
|
1445
1458
|
]
|
1446
1459
|
|
1460
|
+
[[package]]
|
1461
|
+
name = "typish"
|
1462
|
+
version = "1.9.3"
|
1463
|
+
description = "Functionality for types"
|
1464
|
+
optional = false
|
1465
|
+
python-versions = "*"
|
1466
|
+
files = [
|
1467
|
+
{file = "typish-1.9.3-py3-none-any.whl", hash = "sha256:03cfee5e6eb856dbf90244e18f4e4c41044c8790d5779f4e775f63f982e2f896"},
|
1468
|
+
]
|
1469
|
+
|
1470
|
+
[package.extras]
|
1471
|
+
test = ["codecov", "coverage", "mypy", "nptyping (>=1.3.0)", "numpy", "pycodestyle", "pylint", "pytest"]
|
1472
|
+
|
1447
1473
|
[[package]]
|
1448
1474
|
name = "urllib3"
|
1449
1475
|
version = "2.2.1"
|
@@ -1578,20 +1604,20 @@ files = [
|
|
1578
1604
|
|
1579
1605
|
[[package]]
|
1580
1606
|
name = "zipp"
|
1581
|
-
version = "3.
|
1607
|
+
version = "3.19.0"
|
1582
1608
|
description = "Backport of pathlib-compatible object wrapper for zip files"
|
1583
1609
|
optional = false
|
1584
1610
|
python-versions = ">=3.8"
|
1585
1611
|
files = [
|
1586
|
-
{file = "zipp-3.
|
1587
|
-
{file = "zipp-3.
|
1612
|
+
{file = "zipp-3.19.0-py3-none-any.whl", hash = "sha256:96dc6ad62f1441bcaccef23b274ec471518daf4fbbc580341204936a5a3dddec"},
|
1613
|
+
{file = "zipp-3.19.0.tar.gz", hash = "sha256:952df858fb3164426c976d9338d3961e8e8b3758e2e059e0f754b8c4262625ee"},
|
1588
1614
|
]
|
1589
1615
|
|
1590
1616
|
[package.extras]
|
1591
1617
|
docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
1592
|
-
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)"]
|
1618
|
+
testing = ["big-O", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy", "pytest-ruff (>=0.2.1)"]
|
1593
1619
|
|
1594
1620
|
[metadata]
|
1595
1621
|
lock-version = "2.0"
|
1596
1622
|
python-versions = ">=3.8.1,<4.0"
|
1597
|
-
content-hash = "
|
1623
|
+
content-hash = "ec512f96331465adf386ce2606d8f8fdca4523a862ed61ce4487d103e84e0d43"
|
mpflash/pyproject.toml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "mpflash"
|
3
|
-
version = "0.
|
3
|
+
version = "0.8.0"
|
4
4
|
description = "Flash and download tool for MicroPython firmwares"
|
5
5
|
authors = ["Jos Verlinde <jos_verlinde@hotmail.com>"]
|
6
6
|
license = "MIT"
|
@@ -18,38 +18,41 @@ classifiers = [
|
|
18
18
|
mpflash = "mpflash.cli_main:mpflash"
|
19
19
|
|
20
20
|
[tool.poetry.dependencies]
|
21
|
-
python = ">=3.8.1,<4.0"
|
22
|
-
requests = "^2.31.0"
|
23
21
|
beautifulsoup4 = "^4.12.3"
|
24
|
-
|
22
|
+
bincopy = "^20.0.0"
|
23
|
+
blkinfo = "^0.2.0"
|
24
|
+
cachetools = "^5.3.0"
|
25
25
|
esptool = "^4.7.0"
|
26
|
+
inquirer = "^3.2.4"
|
26
27
|
jsonlines = "^4.0.0"
|
27
|
-
|
28
|
-
|
29
|
-
|
28
|
+
jsons = "^1.6.3"
|
29
|
+
libusb = {version = "^1.0.27", platform = "win32"}
|
30
|
+
loguru = "^0.7.2"
|
31
|
+
mpremote = "^1.22.0"
|
32
|
+
packaging = "23.2"
|
33
|
+
platformdirs = "^4.2.0"
|
30
34
|
psutil = "^5.9.8"
|
31
|
-
blkinfo = "^0.2.0"
|
32
35
|
pygithub = "^2.1.1"
|
33
|
-
|
36
|
+
python = ">=3.8.1,<4.0"
|
34
37
|
pyusb = "^1.2.1"
|
35
|
-
|
38
|
+
requests = "^2.31.0"
|
39
|
+
rich-click = "^1.8.1"
|
36
40
|
tenacity = "8.2.3"
|
37
|
-
|
38
|
-
inquirer = "^3.2.4"
|
39
|
-
libusb = {version = "^1.0.27", platform = "win32"}
|
41
|
+
|
40
42
|
|
41
43
|
[tool.poetry.group.test]
|
42
44
|
optional = true
|
43
45
|
[tool.poetry.group.test.dependencies]
|
44
|
-
coverage = ">=6.4.3,<8.0.0"
|
45
46
|
pytest = "^7.1.2"
|
46
47
|
pytest-github-actions-annotate-failures = ">=0.1.7,<0.3.0"
|
47
48
|
pytest-json-report = "^1.5.0"
|
48
49
|
pytest-metadata = ">=2.0.2,<4.0.0"
|
49
50
|
pytest-mock = "^3.10.0"
|
50
|
-
|
51
|
+
#
|
52
|
+
coverage = ">=6.4.3,<8.0.0"
|
51
53
|
distro = "^1.8.0"
|
52
54
|
fasteners = "^0.19"
|
55
|
+
mock = "^4.0.3"
|
53
56
|
|
54
57
|
|
55
58
|
[build-system]
|
stubber/__init__.py
CHANGED
stubber/board/createstubs.py
CHANGED
@@ -24,7 +24,7 @@ try:
|
|
24
24
|
except ImportError:
|
25
25
|
from ucollections import OrderedDict # type: ignore
|
26
26
|
|
27
|
-
__version__ = "v1.20.
|
27
|
+
__version__ = "v1.20.2"
|
28
28
|
ENOENT = 2
|
29
29
|
_MAX_CLASS_LEVEL = 2 # Max class nesting
|
30
30
|
LIBS = ["lib", "/lib", "/sd/lib", "/flash/lib", "."]
|
@@ -596,10 +596,10 @@ def _info(): # type:() -> dict[str, str]
|
|
596
596
|
if (
|
597
597
|
info["version"]
|
598
598
|
and info["version"].endswith(".0")
|
599
|
-
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.20.
|
599
|
+
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.20.2 do not have a micro .0
|
600
600
|
and info["version"] <= "1.19.9"
|
601
601
|
):
|
602
|
-
# versions from 1.10.0 to 1.20.
|
602
|
+
# versions from 1.10.0 to 1.20.2 do not have a micro .0
|
603
603
|
info["version"] = info["version"][:-2]
|
604
604
|
|
605
605
|
# spell-checker: disable
|
@@ -898,6 +898,7 @@ def main():
|
|
898
898
|
"sys",
|
899
899
|
"termios",
|
900
900
|
"time",
|
901
|
+
"tls",
|
901
902
|
"tpcalib",
|
902
903
|
"uarray",
|
903
904
|
"uasyncio/__init__",
|