micropython-stubber 1.23.1__tar.gz → 1.23.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (162) hide show
  1. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/LICENSE +30 -30
  2. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/PKG-INFO +32 -15
  3. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/pyproject.toml +381 -380
  4. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/readme.md +212 -195
  5. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/README.md +220 -194
  6. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/libusb_flash.ipynb +203 -203
  7. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/add_firmware.py +98 -98
  8. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/ask_input.py +236 -236
  9. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/basicgit.py +284 -284
  10. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/bootloader/__init__.py +2 -2
  11. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/bootloader/activate.py +60 -60
  12. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/bootloader/detect.py +82 -82
  13. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/bootloader/manual.py +101 -101
  14. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/bootloader/micropython.py +12 -12
  15. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/bootloader/touch1200.py +36 -36
  16. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/cli_download.py +129 -129
  17. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/cli_flash.py +224 -219
  18. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/cli_group.py +111 -111
  19. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/cli_list.py +87 -81
  20. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/cli_main.py +39 -39
  21. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/common.py +210 -165
  22. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/config.py +44 -44
  23. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/connected.py +96 -78
  24. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/download.py +364 -364
  25. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/downloaded.py +130 -130
  26. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/errors.py +9 -9
  27. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/flash/__init__.py +55 -55
  28. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/flash/esp.py +59 -59
  29. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/flash/stm32.py +19 -19
  30. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/flash/stm32_dfu.py +104 -104
  31. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/flash/uf2/__init__.py +88 -88
  32. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/flash/uf2/boardid.py +15 -15
  33. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/flash/uf2/linux.py +136 -130
  34. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/flash/uf2/macos.py +42 -42
  35. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/flash/uf2/uf2disk.py +12 -12
  36. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/flash/uf2/windows.py +43 -43
  37. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/flash/worklist.py +170 -170
  38. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/list.py +106 -99
  39. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/logger.py +41 -41
  40. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/mpboard_id/__init__.py +93 -93
  41. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/mpboard_id/add_boards.py +251 -251
  42. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/mpboard_id/board.py +37 -37
  43. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/mpboard_id/board_id.py +86 -86
  44. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/mpboard_id/store.py +43 -43
  45. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/mpremoteboard/__init__.py +266 -222
  46. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/mpremoteboard/mpy_fw_info.py +141 -141
  47. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/mpremoteboard/runner.py +140 -140
  48. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/vendor/click_aliases.py +91 -91
  49. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/vendor/dfu.py +165 -165
  50. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/vendor/pydfu.py +605 -605
  51. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/vendor/readme.md +2 -2
  52. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/versions.py +135 -135
  53. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/poetry.lock +1599 -1599
  54. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/pyproject.toml +65 -65
  55. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/stm32_udev_rules.md +62 -62
  56. micropython_stubber-1.23.2/src/stubber/__init__.py +3 -0
  57. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/board_info.csv +193 -193
  58. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/boot.py +34 -34
  59. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/createstubs.py +1004 -986
  60. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/createstubs_db.py +826 -825
  61. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/createstubs_db_min.py +332 -331
  62. micropython_stubber-1.23.2/src/stubber/board/createstubs_db_mpy.mpy +0 -0
  63. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/createstubs_lvgl.py +741 -741
  64. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/createstubs_lvgl_min.py +741 -741
  65. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/createstubs_mem.py +767 -766
  66. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/createstubs_mem_min.py +307 -306
  67. micropython_stubber-1.23.2/src/stubber/board/createstubs_mem_mpy.mpy +0 -0
  68. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/createstubs_min.py +295 -294
  69. micropython_stubber-1.23.2/src/stubber/board/createstubs_mpy.mpy +0 -0
  70. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/fw_info.py +141 -141
  71. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/info.py +183 -183
  72. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/main.py +19 -19
  73. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/modulelist.txt +247 -247
  74. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/pyrightconfig.json +34 -34
  75. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/bulk/mcu_stubber.py +437 -454
  76. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/codemod/_partials/__init__.py +48 -48
  77. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/codemod/_partials/db_main.py +147 -147
  78. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/codemod/_partials/lvgl_main.py +77 -77
  79. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/codemod/_partials/modules_reader.py +80 -80
  80. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/codemod/add_comment.py +53 -53
  81. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/codemod/add_method.py +65 -65
  82. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/codemod/board.py +317 -317
  83. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/codemod/enrich.py +151 -145
  84. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/codemod/merge_docstub.py +284 -284
  85. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/codemod/modify_list.py +54 -54
  86. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/codemod/utils.py +56 -56
  87. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/build_cmd.py +94 -94
  88. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/cli.py +49 -55
  89. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/clone_cmd.py +78 -78
  90. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/config_cmd.py +29 -29
  91. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/enrich_folder_cmd.py +71 -71
  92. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/get_core_cmd.py +71 -71
  93. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/get_docstubs_cmd.py +92 -89
  94. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/get_frozen_cmd.py +117 -114
  95. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/get_mcu_cmd.py +102 -61
  96. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/merge_cmd.py +66 -66
  97. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/publish_cmd.py +118 -118
  98. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/stub_cmd.py +31 -31
  99. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/switch_cmd.py +62 -62
  100. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/variants_cmd.py +48 -48
  101. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/cst_transformer.py +178 -178
  102. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/data/board_info.csv +193 -193
  103. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/data/board_info.json +1729 -1729
  104. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/data/micropython_tags.csv +15 -15
  105. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/data/requirements-core-micropython.txt +38 -38
  106. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/data/requirements-core-pycopy.txt +39 -39
  107. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/downloader.py +37 -36
  108. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/freeze/common.py +72 -68
  109. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/freeze/freeze_folder.py +69 -69
  110. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/freeze/freeze_manifest_2.py +126 -113
  111. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/freeze/get_frozen.py +131 -127
  112. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/get_cpython.py +112 -101
  113. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/get_lobo.py +59 -59
  114. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/minify.py +423 -419
  115. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/bump.py +86 -86
  116. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/candidates.py +275 -256
  117. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/database.py +18 -18
  118. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/defaults.py +40 -40
  119. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/enums.py +24 -24
  120. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/helpers.py +29 -29
  121. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/merge_docstubs.py +136 -130
  122. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/missing_class_methods.py +51 -49
  123. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/package.py +150 -146
  124. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/pathnames.py +51 -51
  125. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/publish.py +120 -120
  126. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/pypi.py +42 -38
  127. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/stubpackage.py +1055 -1027
  128. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/rst/__init__.py +9 -9
  129. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/rst/classsort.py +78 -77
  130. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/rst/lookup.py +533 -530
  131. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/rst/output_dict.py +401 -401
  132. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/rst/reader.py +814 -814
  133. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/rst/report_return.py +77 -69
  134. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/rst/rst_utils.py +541 -540
  135. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/stubber.py +38 -38
  136. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/stubs_from_docs.py +90 -90
  137. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/tools/manifestfile.py +654 -654
  138. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/tools/readme.md +6 -6
  139. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/update_fallback.py +117 -117
  140. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/update_module_list.py +123 -123
  141. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/utils/__init__.py +6 -6
  142. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/utils/config.py +137 -125
  143. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/utils/makeversionhdr.py +54 -54
  144. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/utils/manifest.py +90 -90
  145. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/utils/post.py +80 -79
  146. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/utils/repos.py +156 -150
  147. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/utils/stubmaker.py +139 -139
  148. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/utils/typed_config_toml.py +80 -77
  149. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/variants.py +106 -106
  150. micropython_stubber-1.23.1/src/mpflash/basicgit.py +0 -288
  151. micropython_stubber-1.23.1/src/stubber/__init__.py +0 -3
  152. micropython_stubber-1.23.1/src/stubber/board/createstubs_db_mpy.mpy +0 -0
  153. micropython_stubber-1.23.1/src/stubber/board/createstubs_mem_mpy.mpy +0 -0
  154. micropython_stubber-1.23.1/src/stubber/board/createstubs_mpy.mpy +0 -0
  155. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/__init__.py +0 -0
  156. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/mpflash/mpflash/mpboard_id/board_info.zip +0 -0
  157. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/board/createstubs_lvgl_mpy.mpy +0 -0
  158. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/codemod/__init__.py +0 -0
  159. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/commands/__init__.py +0 -0
  160. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/freeze/__init__.py +0 -0
  161. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/publish/__init__.py +0 -0
  162. {micropython_stubber-1.23.1 → micropython_stubber-1.23.2}/src/stubber/tools/__init__.py +0 -0
@@ -1,30 +1,30 @@
1
- micropython-stubber consists of original work combined with multiple modules
2
- from different sources and authors. Each module comes under its own licensing terms.
3
- The Short name of the license and exact authorship information can be found in a
4
- "LICENSE" or "LICENSE_<module>" file within the relevant stub directory.
5
-
6
- Files not belonging to a particular module a provided under MIT license, unless explicitly
7
- stated otherwise.
8
-
9
- =============== Top level MIT License ===============
10
-
11
- Copyright (c) 2019 Jos Verlinde
12
-
13
- Permission is hereby granted, free of charge, to any person obtaining a copy
14
- of this software and associated documentation files (the "Software"), to deal
15
- in the Software without restriction, including without limitation the rights
16
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17
- copies of the Software, and to permit persons to whom the Software is
18
- furnished to do so, subject to the following conditions:
19
-
20
- The above copyright notice and this permission notice shall be included in all
21
- copies or substantial portions of the Software.
22
-
23
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29
- SOFTWARE.
30
-
1
+ micropython-stubber consists of original work combined with multiple modules
2
+ from different sources and authors. Each module comes under its own licensing terms.
3
+ The Short name of the license and exact authorship information can be found in a
4
+ "LICENSE" or "LICENSE_<module>" file within the relevant stub directory.
5
+
6
+ Files not belonging to a particular module a provided under MIT license, unless explicitly
7
+ stated otherwise.
8
+
9
+ =============== Top level MIT License ===============
10
+
11
+ Copyright (c) 2019 Jos Verlinde
12
+
13
+ Permission is hereby granted, free of charge, to any person obtaining a copy
14
+ of this software and associated documentation files (the "Software"), to deal
15
+ in the Software without restriction, including without limitation the rights
16
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17
+ copies of the Software, and to permit persons to whom the Software is
18
+ furnished to do so, subject to the following conditions:
19
+
20
+ The above copyright notice and this permission notice shall be included in all
21
+ copies or substantial portions of the Software.
22
+
23
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29
+ SOFTWARE.
30
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: micropython-stubber
3
- Version: 1.23.1
3
+ Version: 1.23.2
4
4
  Summary: Tooling to create and maintain stubs for MicroPython
5
5
  Home-page: https://github.com/Josverl/micropython-stubber#readme
6
6
  License: MIT
@@ -23,12 +23,12 @@ Requires-Dist: black (>=22.10,<25.0)
23
23
  Requires-Dist: cachetools (>=5.3.0,<6.0.0)
24
24
  Requires-Dist: click (>=8.1.3,<9.0.0)
25
25
  Requires-Dist: executing (>=2.0.1,<3.0.0)
26
- Requires-Dist: importlib-metadata (>=1.0,<2.0) ; python_version < "3.8"
26
+ Requires-Dist: importlib-metadata (>=1,<9) ; python_version < "3.8"
27
27
  Requires-Dist: libcst (>=1.1.0,<2.0.0)
28
28
  Requires-Dist: loguru (>=0.6,<0.8)
29
- Requires-Dist: mpflash (==0.9.1.post2)
29
+ Requires-Dist: mpflash (>=1.0.2,<2.0.0)
30
30
  Requires-Dist: mpremote (>=1.23.0,<2.0.0)
31
- Requires-Dist: mypy (==1.9.0)
31
+ Requires-Dist: mypy (==1.10.1)
32
32
  Requires-Dist: mypy-gitlab-code-quality (>=1.1.0,<2.0.0)
33
33
  Requires-Dist: packaging (>=21.3,<24.0)
34
34
  Requires-Dist: pipx (>=1.1.0,<2.0.0)
@@ -172,7 +172,7 @@ for more info see [**Renaming a branch**](https://docs.github.com/en/repositorie
172
172
 
173
173
  ## Licensing
174
174
 
175
- MicroPython-Stubber is licensed under the MIT license, and all contributions should follow this [LICENSE](LICENSE).
175
+ Both `MicroPython-Stubber` and `mpflash` are licensed under the MIT license, and all contributions should follow this [LICENSE](LICENSE).
176
176
 
177
177
 
178
178
  # Contributions
@@ -184,35 +184,52 @@ MicroPython-Stubber is licensed under the MIT license, and all contributions sho
184
184
  <table>
185
185
  <tbody>
186
186
  <tr>
187
- <td align="center" valign="top" width="14.28%"><a href="https://github.com/Josverl"><img src="https://avatars2.githubusercontent.com/u/981654?v=4?s=100" width="100px;" alt="Jos Verlinde"/><br /><sub><b>Jos Verlinde</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/commits?author=josverl" title="Code">💻</a> <a href="#research-josverl" title="Research">🔬</a> <a href="#ideas-josverl" title="Ideas, Planning, & Feedback">🤔</a> <a href="#content-josverl" title="Content">🖋</a> <a href="#stubs-josverl" title="MicroPython stubs">📚</a> <a href="#test-josverl" title="Test">✔</a></td>
187
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/Josverl"><img src="https://avatars2.githubusercontent.com/u/981654?v=4?s=100" width="100px;" alt="Jos Verlinde"/><br /><sub><b>Jos Verlinde</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/commits?author=josverl" title="Code">💻</a> <a href="#research-josverl" title="Research">🔬</a> <a href="#ideas-josverl" title="Ideas, Planning, & Feedback">🤔</a> <a href="#content-josverl" title="Content">🖋</a> <a href="#stubs-josverl" title="MicroPython stubs">🖍️</a> <a href="#test-josverl" title="Test">✅</a> <a href="#mpflash-josverl" title="mpflash">💥</a></td>
188
188
  <td align="center" valign="top" width="14.28%"><a href="https://thonny.org/"><img src="https://avatars1.githubusercontent.com/u/46202078?v=4?s=100" width="100px;" alt="Thonny, Python IDE for beginners"/><br /><sub><b>Thonny, Python IDE for beginners</b></sub></a><br /><a href="#ideas-thonny" title="Ideas, Planning, & Feedback">🤔</a> <a href="#research-thonny" title="Research">🔬</a></td>
189
- <td align="center" valign="top" width="14.28%"><a href="https://micropython.org/"><img src="https://avatars1.githubusercontent.com/u/6298560?v=4?s=100" width="100px;" alt="MicroPython"/><br /><sub><b>MicroPython</b></sub></a><br /><a href="#data-micropython" title="Data">🔣</a> <a href="#stubs-micropython" title="MicroPython stubs">📚</a></td>
189
+ <td align="center" valign="top" width="14.28%"><a href="https://micropython.org/"><img src="https://avatars1.githubusercontent.com/u/6298560?v=4?s=100" width="100px;" alt="MicroPython"/><br /><sub><b>MicroPython</b></sub></a><br /><a href="#data-micropython" title="Data">🔣</a> <a href="#stubs-micropython" title="MicroPython stubs">🖍️</a></td>
190
190
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/microsoft/pyright"><img src="https://avatars.githubusercontent.com/u/6154722?v=4?s=100" width="100px;" alt="pyright"/><br /><sub><b>pyright</b></sub></a><br /><a href="#tool-pyright" title="Tools">🔧</a></td>
191
- <td align="center" valign="top" width="14.28%"><a href="https://github.com/loboris"><img src="https://avatars3.githubusercontent.com/u/6280349?v=4?s=100" width="100px;" alt="Boris Lovosevic"/><br /><sub><b>Boris Lovosevic</b></sub></a><br /><a href="#data-loboris" title="Data">🔣</a> <a href="#stubs-loboris" title="MicroPython stubs">📚</a></td>
192
- <td align="center" valign="top" width="14.28%"><a href="https://github.com/pfalcon"><img src="https://avatars3.githubusercontent.com/u/500451?v=4?s=100" width="100px;" alt="Paul Sokolovsky"/><br /><sub><b>Paul Sokolovsky</b></sub></a><br /><a href="#data-pfalcon" title="Data">🔣</a> <a href="#stubs-pfalcon" title="MicroPython stubs">📚</a></td>
193
- <td align="center" valign="top" width="14.28%"><a href="https://github.com/pycopy"><img src="https://avatars0.githubusercontent.com/u/67273174?v=4?s=100" width="100px;" alt="pycopy"/><br /><sub><b>pycopy</b></sub></a><br /><a href="#data-pycopy" title="Data">🔣</a> <a href="#stubs-pycopy" title="MicroPython stubs">📚</a></td>
191
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/loboris"><img src="https://avatars3.githubusercontent.com/u/6280349?v=4?s=100" width="100px;" alt="Boris Lovosevic"/><br /><sub><b>Boris Lovosevic</b></sub></a><br /><a href="#data-loboris" title="Data">🔣</a> <a href="#stubs-loboris" title="MicroPython stubs">🖍️</a></td>
192
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/pfalcon"><img src="https://avatars3.githubusercontent.com/u/500451?v=4?s=100" width="100px;" alt="Paul Sokolovsky"/><br /><sub><b>Paul Sokolovsky</b></sub></a><br /><a href="#data-pfalcon" title="Data">🔣</a> <a href="#stubs-pfalcon" title="MicroPython stubs">🖍️</a></td>
193
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/pycopy"><img src="https://avatars0.githubusercontent.com/u/67273174?v=4?s=100" width="100px;" alt="pycopy"/><br /><sub><b>pycopy</b></sub></a><br /><a href="#data-pycopy" title="Data">🔣</a> <a href="#stubs-pycopy" title="MicroPython stubs">🖍️</a></td>
194
194
  </tr>
195
195
  <tr>
196
196
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/pycom"><img src="https://avatars2.githubusercontent.com/u/16415153?v=4?s=100" width="100px;" alt="Pycom"/><br /><sub><b>Pycom</b></sub></a><br /><a href="#infra-pycom" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
197
- <td align="center" valign="top" width="14.28%"><a href="https://github.com/BradenM"><img src="https://avatars1.githubusercontent.com/u/5913808?v=4?s=100" width="100px;" alt="Braden Mars"/><br /><sub><b>Braden Mars</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/issues?q=author%3ABradenM" title="Bug reports">🐛</a> <a href="https://github.com/Josverl/micropython-stubber/commits?author=BradenM" title="Code">💻</a> <a href="#stubs-BradenM" title="MicroPython stubs">📚</a> <a href="#platform-BradenM" title="Packaging/porting to new platform">📦</a></td>
197
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/BradenM"><img src="https://avatars1.githubusercontent.com/u/5913808?v=4?s=100" width="100px;" alt="Braden Mars"/><br /><sub><b>Braden Mars</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/issues?q=author%3ABradenM" title="Bug reports">🐛</a> <a href="https://github.com/Josverl/micropython-stubber/commits?author=BradenM" title="Code">💻</a> <a href="#stubs-BradenM" title="MicroPython stubs">🖍️</a> <a href="#platform-BradenM" title="Packaging/porting to new platform">📦</a></td>
198
198
  <td align="center" valign="top" width="14.28%"><a href="https://binary.com.au/"><img src="https://avatars2.githubusercontent.com/u/175909?v=4?s=100" width="100px;" alt="James Manners"/><br /><sub><b>James Manners</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/commits?author=jmannau" title="Code">💻</a> <a href="https://github.com/Josverl/micropython-stubber/issues?q=author%3Ajmannau" title="Bug reports">🐛</a></td>
199
- <td align="center" valign="top" width="14.28%"><a href="http://patrickwalters.us/"><img src="https://avatars0.githubusercontent.com/u/4002194?v=4?s=100" width="100px;" alt="Patrick"/><br /><sub><b>Patrick</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/issues?q=author%3Aaskpatrickw" title="Bug reports">🐛</a> <a href="https://github.com/Josverl/micropython-stubber/commits?author=askpatrickw" title="Code">💻</a> <a href="#stubs-askpatrickw" title="MicroPython stubs">📚</a></td>
199
+ <td align="center" valign="top" width="14.28%"><a href="http://patrickwalters.us/"><img src="https://avatars0.githubusercontent.com/u/4002194?v=4?s=100" width="100px;" alt="Patrick"/><br /><sub><b>Patrick</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/issues?q=author%3Aaskpatrickw" title="Bug reports">🐛</a> <a href="https://github.com/Josverl/micropython-stubber/commits?author=askpatrickw" title="Code">💻</a> <a href="#stubs-askpatrickw" title="MicroPython stubs">🖍️</a></td>
200
200
  <td align="center" valign="top" width="14.28%"><a href="https://opencollective.com/pythonseverywhere"><img src="https://avatars3.githubusercontent.com/u/16009100?v=4?s=100" width="100px;" alt="Paul m. p. P."/><br /><sub><b>Paul m. p. P.</b></sub></a><br /><a href="#ideas-pmp-p" title="Ideas, Planning, & Feedback">🤔</a> <a href="#research-pmp-p" title="Research">🔬</a></td>
201
201
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/edreamleo"><img src="https://avatars0.githubusercontent.com/u/592928?v=4?s=100" width="100px;" alt="Edward K. Ream"/><br /><sub><b>Edward K. Ream</b></sub></a><br /><a href="#plugin-edreamleo" title="Plugin/utility libraries">🔌</a></td>
202
- <td align="center" valign="top" width="14.28%"><a href="https://github.com/dastultz"><img src="https://avatars3.githubusercontent.com/u/4334042?v=4?s=100" width="100px;" alt="Daryl Stultz"/><br /><sub><b>Daryl Stultz</b></sub></a><br /><a href="#stubs-dastultz" title="MicroPython stubs">📚</a></td>
202
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/dastultz"><img src="https://avatars3.githubusercontent.com/u/4334042?v=4?s=100" width="100px;" alt="Daryl Stultz"/><br /><sub><b>Daryl Stultz</b></sub></a><br /><a href="#stubs-dastultz" title="MicroPython stubs">🖍️</a></td>
203
203
  </tr>
204
204
  <tr>
205
205
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/cabletie"><img src="https://avatars1.githubusercontent.com/u/2356734?v=4?s=100" width="100px;" alt="Keeping things together"/><br /><sub><b>Keeping things together</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/issues?q=author%3Acabletie" title="Bug reports">🐛</a></td>
206
- <td align="center" valign="top" width="14.28%"><a href="https://github.com/vbolshakov"><img src="https://avatars2.githubusercontent.com/u/2453324?v=4?s=100" width="100px;" alt="vbolshakov"/><br /><sub><b>vbolshakov</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/issues?q=author%3Avbolshakov" title="Bug reports">🐛</a> <a href="#stubs-vbolshakov" title="MicroPython stubs">📚</a></td>
206
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/vbolshakov"><img src="https://avatars2.githubusercontent.com/u/2453324?v=4?s=100" width="100px;" alt="vbolshakov"/><br /><sub><b>vbolshakov</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/issues?q=author%3Avbolshakov" title="Bug reports">🐛</a> <a href="#stubs-vbolshakov" title="MicroPython stubs">🖍️</a></td>
207
207
  <td align="center" valign="top" width="14.28%"><a href="https://lemariva.com/"><img src="https://avatars2.githubusercontent.com/u/15173329?v=4?s=100" width="100px;" alt="Mauro Riva"/><br /><sub><b>Mauro Riva</b></sub></a><br /><a href="#blog-lemariva" title="Blogposts">📝</a> <a href="https://github.com/Josverl/micropython-stubber/issues?q=author%3Alemariva" title="Bug reports">🐛</a></td>
208
208
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/MathijsNL"><img src="https://avatars0.githubusercontent.com/u/1612886?v=4?s=100" width="100px;" alt="MathijsNL"/><br /><sub><b>MathijsNL</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/issues?q=author%3AMathijsNL" title="Bug reports">🐛</a></td>
209
- <td align="center" valign="top" width="14.28%"><a href="http://comingsoon.tm/"><img src="https://avatars0.githubusercontent.com/u/13251689?v=4?s=100" width="100px;" alt="Callum Jacob Hays"/><br /><sub><b>Callum Jacob Hays</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/issues?q=author%3ACallumJHays" title="Bug reports">🐛</a> <a href="#test-CallumJHays" title="Test">✔</a></td>
209
+ <td align="center" valign="top" width="14.28%"><a href="http://comingsoon.tm/"><img src="https://avatars0.githubusercontent.com/u/13251689?v=4?s=100" width="100px;" alt="Callum Jacob Hays"/><br /><sub><b>Callum Jacob Hays</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/issues?q=author%3ACallumJHays" title="Bug reports">🐛</a> <a href="#test-CallumJHays" title="Test">✅</a></td>
210
210
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/v923z"><img src="https://avatars0.githubusercontent.com/u/1310472?v=4?s=100" width="100px;" alt="Zoltán Vörös"/><br /><sub><b>Zoltán Vörös</b></sub></a><br /><a href="#data-v923z" title="Data">🔣</a></td>
211
211
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/vincent-l-j"><img src="https://avatars.githubusercontent.com/u/20021376?v=4?s=100" width="100px;" alt="vincent-l-j"/><br /><sub><b>vincent-l-j</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/commits?author=vincent-l-j" title="Documentation">📖</a></td>
212
212
  </tr>
213
213
  <tr>
214
214
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/yegorLitvinov"><img src="https://avatars.githubusercontent.com/u/20367310?v=4?s=100" width="100px;" alt="Egor Litvinov"/><br /><sub><b>Egor Litvinov</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/issues?q=author%3AyegorLitvinov" title="Bug reports">🐛</a></td>
215
215
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/samskiter"><img src="https://avatars.githubusercontent.com/u/1271643?v=4?s=100" width="100px;" alt="Sam Duke"/><br /><sub><b>Sam Duke</b></sub></a><br /><a href="https://github.com/Josverl/micropython-stubber/commits?author=samskiter" title="Code">💻</a></td>
216
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/shariltumin"><img src="https://avatars.githubusercontent.com/u/186120?v=4?s=100" width="100px;" alt="shariltumin"/><br /><sub><b>shariltumin</b></sub></a><br /><a href="#mpflash-shariltumin" title="mpflash">💥</a> <a href="#test-shariltumin" title="Test">✅</a></td>
217
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/mattytrentini"><img src="https://avatars.githubusercontent.com/u/194201?v=4?s=100" width="100px;" alt="Matt Trentini"/><br /><sub><b>Matt Trentini</b></sub></a><br /><a href="#mpflash-mattytrentini" title="mpflash">💥</a> <a href="#test-mattytrentini" title="Test">✅</a></td>
218
+ <td align="center" valign="top" width="14.28%"><a href="http://scruss.com/blog/"><img src="https://avatars.githubusercontent.com/u/425706?v=4?s=100" width="100px;" alt="Stewart Russell"/><br /><sub><b>Stewart Russell</b></sub></a><br /><a href="#mpflash-scruss" title="mpflash">💥</a> <a href="#test-scruss" title="Test">✅</a></td>
219
+ <td align="center" valign="top" width="14.28%"><a href="https://www.gitlab.com/alelec"><img src="https://avatars.githubusercontent.com/u/3318786?v=4?s=100" width="100px;" alt="Andrew Leech"/><br /><sub><b>Andrew Leech</b></sub></a><br /><a href="#mpflash-andrewleech" title="mpflash">💥</a> <a href="#test-andrewleech" title="Test">✅</a></td>
220
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/wovo"><img src="https://avatars.githubusercontent.com/u/9039468?v=4?s=100" width="100px;" alt="Wouter van Ooijen"/><br /><sub><b>Wouter van Ooijen</b></sub></a><br /><a href="#mpflash-wovo" title="mpflash">💥</a> <a href="#test-wovo" title="Test">✅</a></td>
221
+ </tr>
222
+ <tr>
223
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/shaneapowell"><img src="https://avatars.githubusercontent.com/u/12113620?v=4?s=100" width="100px;" alt="Shane Powell"/><br /><sub><b>Shane Powell</b></sub></a><br /><a href="#mpflash-shaneapowell" title="mpflash">💥</a> <a href="#test-shaneapowell" title="Test">✅</a></td>
224
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/robert-hh"><img src="https://avatars.githubusercontent.com/u/12476868?v=4?s=100" width="100px;" alt="Robert Hammelrath"/><br /><sub><b>Robert Hammelrath</b></sub></a><br /><a href="#mpflash-robert-hh" title="mpflash">💥</a> <a href="#test-robert-hh" title="Test">✅</a></td>
225
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/beetlegigg"><img src="https://avatars.githubusercontent.com/u/34552737?v=4?s=100" width="100px;" alt="Bg"/><br /><sub><b>Bg</b></sub></a><br /><a href="#mpflash-beetlegigg" title="mpflash">💥</a> <a href="#test-beetlegigg" title="Test">✅</a></td>
226
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/rkompass"><img src="https://avatars.githubusercontent.com/u/90282516?v=4?s=100" width="100px;" alt="Raul Kompaß"/><br /><sub><b>Raul Kompaß</b></sub></a><br /><a href="#mpflash-rkompass" title="mpflash">💥</a> <a href="#test-rkompass" title="Test">✅</a></td>
227
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/garryp4"><img src="https://avatars.githubusercontent.com/u/96994876?v=4?s=100" width="100px;" alt="garryp4"/><br /><sub><b>garryp4</b></sub></a><br /><a href="#mpflash-garryp4" title="mpflash">💥</a> <a href="#test-garryp4" title="Test">✅</a></td>
228
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/shanepowell-ast"><img src="https://avatars.githubusercontent.com/u/102747617?v=4?s=100" width="100px;" alt="Shane Powell"/><br /><sub><b>Shane Powell</b></sub></a><br /><a href="#mpflash-shanepowell-ast" title="mpflash">💥</a> <a href="#test-shanepowell-ast" title="Test">✅</a></td>
229
+ <td align="center" valign="top" width="14.28%"><a href="https://andypiper.org/"><img src="https://avatars.githubusercontent.com/u/552452?v=4?s=100" width="100px;" alt="Andy Piper"/><br /><sub><b>Andy Piper</b></sub></a><br /><a href="#mpflash-andypiper" title="mpflash">💥</a> <a href="#test-andypiper" title="Test">✅</a></td>
230
+ </tr>
231
+ <tr>
232
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/DavesCodeMusings"><img src="https://avatars.githubusercontent.com/u/61114342?v=4?s=100" width="100px;" alt="David Horton"/><br /><sub><b>David Horton</b></sub></a><br /><a href="#mpflash-DavesCodeMusings" title="mpflash">💥</a> <a href="#test-DavesCodeMusings" title="Test">✅</a></td>
216
233
  </tr>
217
234
  </tbody>
218
235
  </table>