micropython-stubber 1.20.5__tar.gz → 1.23.0__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 (160) hide show
  1. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/LICENSE +30 -30
  2. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/PKG-INFO +1 -1
  3. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/pyproject.toml +379 -379
  4. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/readme.md +195 -195
  5. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/README.md +184 -184
  6. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/libusb_flash.ipynb +203 -203
  7. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/add_firmware.py +98 -98
  8. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/ask_input.py +236 -236
  9. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/bootloader/__init__.py +37 -36
  10. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/bootloader/manual.py +102 -102
  11. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/bootloader/micropython.py +10 -10
  12. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/bootloader/touch1200.py +45 -45
  13. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/cli_download.py +129 -129
  14. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/cli_flash.py +219 -219
  15. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/cli_group.py +98 -98
  16. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/cli_list.py +81 -81
  17. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/cli_main.py +41 -41
  18. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/common.py +164 -164
  19. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/config.py +43 -47
  20. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/connected.py +74 -74
  21. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/download.py +360 -360
  22. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/downloaded.py +130 -129
  23. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/errors.py +9 -9
  24. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/flash.py +55 -52
  25. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/flash_esp.py +59 -59
  26. micropython_stubber-1.23.0/src/mpflash/mpflash/flash_stm32.py +18 -0
  27. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/flash_stm32_cube.py +111 -111
  28. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/flash_stm32_dfu.py +104 -101
  29. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/flash_uf2.py +89 -67
  30. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/flash_uf2_boardid.py +15 -15
  31. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/flash_uf2_linux.py +129 -123
  32. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/flash_uf2_macos.py +37 -34
  33. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/flash_uf2_windows.py +38 -34
  34. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/list.py +89 -89
  35. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/logger.py +41 -41
  36. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/mpboard_id/__init__.py +93 -93
  37. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/mpboard_id/add_boards.py +255 -255
  38. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/mpboard_id/board.py +37 -37
  39. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/mpboard_id/board_id.py +86 -86
  40. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/mpboard_id/store.py +43 -43
  41. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/mpremoteboard/__init__.py +226 -221
  42. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/mpremoteboard/mpy_fw_info.py +141 -141
  43. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/mpremoteboard/runner.py +140 -140
  44. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/uf2disk.py +12 -12
  45. {micropython_stubber-1.20.5/src/stubber → micropython_stubber-1.23.0/src/mpflash/mpflash/vendor}/basicgit.py +288 -288
  46. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/vendor/click_aliases.py +91 -91
  47. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/vendor/dfu.py +165 -165
  48. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/vendor/pydfu.py +605 -605
  49. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/vendor/readme.md +2 -2
  50. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/vendor/versions.py +119 -117
  51. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/worklist.py +171 -170
  52. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/poetry.lock +1588 -1588
  53. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/pyproject.toml +64 -60
  54. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/stm32_udev_rules.md +62 -62
  55. micropython_stubber-1.23.0/src/stubber/__init__.py +3 -0
  56. {micropython_stubber-1.20.5/src/mpflash/mpflash/vendor → micropython_stubber-1.23.0/src/stubber}/basicgit.py +294 -288
  57. {micropython_stubber-1.20.5/src/stubber/data → micropython_stubber-1.23.0/src/stubber/board}/board_info.csv +193 -193
  58. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/boot.py +34 -34
  59. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/createstubs.py +986 -986
  60. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/createstubs_db.py +825 -825
  61. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/createstubs_db_min.py +331 -331
  62. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/createstubs_db_mpy.mpy +0 -0
  63. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/createstubs_lvgl.py +741 -741
  64. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/createstubs_lvgl_min.py +741 -741
  65. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/createstubs_mem.py +766 -766
  66. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/createstubs_mem_min.py +306 -306
  67. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/createstubs_mem_mpy.mpy +0 -0
  68. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/createstubs_min.py +294 -294
  69. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/createstubs_mpy.mpy +0 -0
  70. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/fw_info.py +141 -141
  71. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/info.py +183 -183
  72. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/main.py +19 -19
  73. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/modulelist.txt +247 -247
  74. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/pyrightconfig.json +34 -34
  75. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/bulk/mcu_stubber.py +454 -454
  76. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/codemod/_partials/__init__.py +48 -48
  77. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/codemod/_partials/db_main.py +147 -147
  78. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/codemod/_partials/lvgl_main.py +77 -77
  79. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/codemod/_partials/modules_reader.py +80 -80
  80. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/codemod/add_comment.py +53 -53
  81. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/codemod/add_method.py +65 -65
  82. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/codemod/board.py +317 -317
  83. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/codemod/enrich.py +145 -145
  84. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/codemod/merge_docstub.py +284 -284
  85. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/codemod/modify_list.py +54 -54
  86. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/codemod/utils.py +57 -57
  87. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/build_cmd.py +94 -94
  88. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/cli.py +55 -51
  89. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/clone_cmd.py +77 -66
  90. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/config_cmd.py +29 -29
  91. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/enrich_folder_cmd.py +71 -70
  92. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/get_core_cmd.py +71 -69
  93. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/get_docstubs_cmd.py +89 -87
  94. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/get_frozen_cmd.py +114 -112
  95. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/get_mcu_cmd.py +61 -56
  96. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/merge_cmd.py +67 -66
  97. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/publish_cmd.py +119 -119
  98. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/stub_cmd.py +31 -30
  99. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/switch_cmd.py +62 -54
  100. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/variants_cmd.py +49 -48
  101. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/cst_transformer.py +178 -178
  102. {micropython_stubber-1.20.5/src/stubber/board → micropython_stubber-1.23.0/src/stubber/data}/board_info.csv +193 -193
  103. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/data/board_info.json +1729 -1729
  104. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/data/micropython_tags.csv +15 -15
  105. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/data/requirements-core-micropython.txt +38 -38
  106. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/data/requirements-core-pycopy.txt +39 -39
  107. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/downloader.py +36 -36
  108. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/freeze/common.py +68 -68
  109. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/freeze/freeze_folder.py +69 -69
  110. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/freeze/freeze_manifest_2.py +113 -113
  111. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/freeze/get_frozen.py +127 -127
  112. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/get_cpython.py +101 -101
  113. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/get_lobo.py +59 -59
  114. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/minify.py +418 -418
  115. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/bump.py +86 -86
  116. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/candidates.py +262 -262
  117. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/database.py +18 -18
  118. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/defaults.py +45 -45
  119. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/enums.py +24 -24
  120. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/helpers.py +29 -29
  121. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/merge_docstubs.py +130 -130
  122. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/missing_class_methods.py +49 -49
  123. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/package.py +146 -146
  124. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/pathnames.py +51 -51
  125. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/publish.py +120 -120
  126. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/pypi.py +38 -38
  127. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/stubpackage.py +1029 -1029
  128. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/rst/__init__.py +9 -9
  129. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/rst/classsort.py +77 -77
  130. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/rst/lookup.py +530 -530
  131. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/rst/output_dict.py +401 -401
  132. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/rst/reader.py +822 -822
  133. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/rst/report_return.py +69 -69
  134. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/rst/rst_utils.py +540 -540
  135. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/stubber.py +38 -38
  136. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/stubs_from_docs.py +90 -90
  137. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/tools/manifestfile.py +655 -610
  138. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/tools/readme.md +7 -6
  139. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/update_fallback.py +117 -117
  140. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/update_module_list.py +123 -123
  141. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/utils/__init__.py +5 -5
  142. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/utils/config.py +127 -127
  143. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/utils/makeversionhdr.py +54 -54
  144. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/utils/manifest.py +92 -92
  145. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/utils/post.py +79 -79
  146. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/utils/repos.py +157 -154
  147. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/utils/stubmaker.py +139 -139
  148. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/utils/typed_config_toml.py +77 -77
  149. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/utils/versions.py +128 -120
  150. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/variants.py +106 -106
  151. micropython_stubber-1.20.5/src/mpflash/mpflash/flash_stm32.py +0 -24
  152. micropython_stubber-1.20.5/src/stubber/__init__.py +0 -3
  153. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/__init__.py +0 -0
  154. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/mpflash/mpflash/mpboard_id/board_info.zip +0 -0
  155. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/board/createstubs_lvgl_mpy.mpy +0 -0
  156. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/codemod/__init__.py +0 -0
  157. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/commands/__init__.py +0 -0
  158. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/freeze/__init__.py +0 -0
  159. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/src/stubber/publish/__init__.py +0 -0
  160. {micropython_stubber-1.20.5 → micropython_stubber-1.23.0}/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.20.5
3
+ Version: 1.23.0
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