micropython-stubber 1.23.2__tar.gz → 1.24.4__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.
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/PKG-INFO +37 -39
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/pyproject.toml +54 -18
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/readme.md +23 -25
- micropython_stubber-1.24.4/src/stubber/__init__.py +3 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/board/createstubs.py +95 -65
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/board/createstubs_db.py +52 -39
- micropython_stubber-1.24.4/src/stubber/board/createstubs_db_min.py +339 -0
- micropython_stubber-1.24.4/src/stubber/board/createstubs_db_mpy.mpy +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/board/createstubs_mem.py +52 -39
- micropython_stubber-1.24.4/src/stubber/board/createstubs_mem_min.py +314 -0
- micropython_stubber-1.24.4/src/stubber/board/createstubs_mem_mpy.mpy +0 -0
- micropython_stubber-1.24.4/src/stubber/board/createstubs_min.py +303 -0
- micropython_stubber-1.24.4/src/stubber/board/createstubs_mpy.mpy +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/board/modulelist.txt +43 -27
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/codemod/board.py +1 -1
- micropython_stubber-1.24.4/src/stubber/codemod/enrich.py +360 -0
- micropython_stubber-1.24.4/src/stubber/codemod/merge_docstub.py +499 -0
- micropython_stubber-1.24.4/src/stubber/codemod/visitors/type_helpers.py +284 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/build_cmd.py +16 -3
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/clone_cmd.py +3 -3
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/config_cmd.py +4 -2
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/enrich_folder_cmd.py +34 -22
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/get_core_cmd.py +1 -2
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/get_docstubs_cmd.py +78 -6
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/get_frozen_cmd.py +16 -12
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/get_mcu_cmd.py +3 -3
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/merge_cmd.py +3 -6
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/publish_cmd.py +19 -4
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/stub_cmd.py +3 -3
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/switch_cmd.py +3 -5
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/variants_cmd.py +3 -3
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/freeze/common.py +27 -11
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/freeze/freeze_manifest_2.py +8 -1
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/freeze/get_frozen.py +4 -1
- micropython_stubber-1.24.4/src/stubber/merge_config.py +80 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/minify.py +3 -4
- micropython_stubber-1.24.4/src/stubber/modcat.py +118 -0
- micropython_stubber-1.24.4/src/stubber/publish/database.py +59 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/publish/merge_docstubs.py +53 -19
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/publish/package.py +32 -18
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/publish/publish.py +8 -8
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/publish/stubpackage.py +138 -70
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/rst/lookup.py +206 -61
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/rst/reader.py +112 -70
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/rst/rst_utils.py +24 -11
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/stubber.py +1 -1
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/stubs_from_docs.py +33 -14
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/tools/manifestfile.py +2 -1
- micropython_stubber-1.23.2/src/stubber/cst_transformer.py → micropython_stubber-1.24.4/src/stubber/typing_collector.py +86 -19
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/update_module_list.py +2 -2
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/utils/config.py +33 -13
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/utils/post.py +9 -6
- micropython_stubber-1.23.2/src/mpflash/README.md +0 -220
- micropython_stubber-1.23.2/src/mpflash/libusb_flash.ipynb +0 -203
- micropython_stubber-1.23.2/src/mpflash/mpflash/add_firmware.py +0 -98
- micropython_stubber-1.23.2/src/mpflash/mpflash/ask_input.py +0 -236
- micropython_stubber-1.23.2/src/mpflash/mpflash/basicgit.py +0 -284
- micropython_stubber-1.23.2/src/mpflash/mpflash/bootloader/__init__.py +0 -2
- micropython_stubber-1.23.2/src/mpflash/mpflash/bootloader/activate.py +0 -60
- micropython_stubber-1.23.2/src/mpflash/mpflash/bootloader/detect.py +0 -82
- micropython_stubber-1.23.2/src/mpflash/mpflash/bootloader/manual.py +0 -101
- micropython_stubber-1.23.2/src/mpflash/mpflash/bootloader/micropython.py +0 -12
- micropython_stubber-1.23.2/src/mpflash/mpflash/bootloader/touch1200.py +0 -36
- micropython_stubber-1.23.2/src/mpflash/mpflash/cli_download.py +0 -129
- micropython_stubber-1.23.2/src/mpflash/mpflash/cli_flash.py +0 -224
- micropython_stubber-1.23.2/src/mpflash/mpflash/cli_group.py +0 -111
- micropython_stubber-1.23.2/src/mpflash/mpflash/cli_list.py +0 -87
- micropython_stubber-1.23.2/src/mpflash/mpflash/cli_main.py +0 -39
- micropython_stubber-1.23.2/src/mpflash/mpflash/common.py +0 -210
- micropython_stubber-1.23.2/src/mpflash/mpflash/config.py +0 -44
- micropython_stubber-1.23.2/src/mpflash/mpflash/connected.py +0 -96
- micropython_stubber-1.23.2/src/mpflash/mpflash/download.py +0 -364
- micropython_stubber-1.23.2/src/mpflash/mpflash/downloaded.py +0 -130
- micropython_stubber-1.23.2/src/mpflash/mpflash/errors.py +0 -9
- micropython_stubber-1.23.2/src/mpflash/mpflash/flash/__init__.py +0 -55
- micropython_stubber-1.23.2/src/mpflash/mpflash/flash/esp.py +0 -59
- micropython_stubber-1.23.2/src/mpflash/mpflash/flash/stm32.py +0 -19
- micropython_stubber-1.23.2/src/mpflash/mpflash/flash/stm32_dfu.py +0 -104
- micropython_stubber-1.23.2/src/mpflash/mpflash/flash/uf2/__init__.py +0 -88
- micropython_stubber-1.23.2/src/mpflash/mpflash/flash/uf2/boardid.py +0 -15
- micropython_stubber-1.23.2/src/mpflash/mpflash/flash/uf2/linux.py +0 -136
- micropython_stubber-1.23.2/src/mpflash/mpflash/flash/uf2/macos.py +0 -42
- micropython_stubber-1.23.2/src/mpflash/mpflash/flash/uf2/uf2disk.py +0 -12
- micropython_stubber-1.23.2/src/mpflash/mpflash/flash/uf2/windows.py +0 -43
- micropython_stubber-1.23.2/src/mpflash/mpflash/flash/worklist.py +0 -170
- micropython_stubber-1.23.2/src/mpflash/mpflash/list.py +0 -106
- micropython_stubber-1.23.2/src/mpflash/mpflash/logger.py +0 -41
- micropython_stubber-1.23.2/src/mpflash/mpflash/mpboard_id/__init__.py +0 -93
- micropython_stubber-1.23.2/src/mpflash/mpflash/mpboard_id/add_boards.py +0 -251
- micropython_stubber-1.23.2/src/mpflash/mpflash/mpboard_id/board.py +0 -37
- micropython_stubber-1.23.2/src/mpflash/mpflash/mpboard_id/board_id.py +0 -86
- micropython_stubber-1.23.2/src/mpflash/mpflash/mpboard_id/board_info.zip +0 -0
- micropython_stubber-1.23.2/src/mpflash/mpflash/mpboard_id/store.py +0 -43
- micropython_stubber-1.23.2/src/mpflash/mpflash/mpremoteboard/__init__.py +0 -266
- micropython_stubber-1.23.2/src/mpflash/mpflash/mpremoteboard/mpy_fw_info.py +0 -141
- micropython_stubber-1.23.2/src/mpflash/mpflash/mpremoteboard/runner.py +0 -140
- micropython_stubber-1.23.2/src/mpflash/mpflash/vendor/click_aliases.py +0 -91
- micropython_stubber-1.23.2/src/mpflash/mpflash/vendor/dfu.py +0 -165
- micropython_stubber-1.23.2/src/mpflash/mpflash/vendor/pydfu.py +0 -605
- micropython_stubber-1.23.2/src/mpflash/mpflash/vendor/readme.md +0 -3
- micropython_stubber-1.23.2/src/mpflash/mpflash/versions.py +0 -135
- micropython_stubber-1.23.2/src/mpflash/poetry.lock +0 -1599
- micropython_stubber-1.23.2/src/mpflash/pyproject.toml +0 -65
- micropython_stubber-1.23.2/src/mpflash/stm32_udev_rules.md +0 -63
- micropython_stubber-1.23.2/src/stubber/__init__.py +0 -3
- micropython_stubber-1.23.2/src/stubber/board/createstubs_db_min.py +0 -333
- micropython_stubber-1.23.2/src/stubber/board/createstubs_db_mpy.mpy +0 -0
- micropython_stubber-1.23.2/src/stubber/board/createstubs_mem_min.py +0 -308
- micropython_stubber-1.23.2/src/stubber/board/createstubs_mem_mpy.mpy +0 -0
- micropython_stubber-1.23.2/src/stubber/board/createstubs_min.py +0 -296
- micropython_stubber-1.23.2/src/stubber/board/createstubs_mpy.mpy +0 -0
- micropython_stubber-1.23.2/src/stubber/codemod/enrich.py +0 -151
- micropython_stubber-1.23.2/src/stubber/codemod/merge_docstub.py +0 -284
- micropython_stubber-1.23.2/src/stubber/publish/database.py +0 -18
- micropython_stubber-1.23.2/src/stubber/publish/missing_class_methods.py +0 -51
- micropython_stubber-1.23.2/src/stubber/tools/__init__.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/LICENSE +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/board/board_info.csv +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/board/boot.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/board/createstubs_lvgl.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/board/createstubs_lvgl_min.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/board/createstubs_lvgl_mpy.mpy +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/board/fw_info.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/board/info.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/board/main.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/board/pyrightconfig.json +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/bulk/mcu_stubber.py +0 -0
- {micropython_stubber-1.23.2/src/mpflash/mpflash → micropython_stubber-1.24.4/src/stubber/codemod}/__init__.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/codemod/_partials/__init__.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/codemod/_partials/db_main.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/codemod/_partials/lvgl_main.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/codemod/_partials/modules_reader.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/codemod/add_comment.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/codemod/add_method.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/codemod/modify_list.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/codemod/utils.py +0 -0
- {micropython_stubber-1.23.2/src/stubber/codemod → micropython_stubber-1.24.4/src/stubber/commands}/__init__.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/commands/cli.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/data/board_info.csv +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/data/board_info.json +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/data/micropython_tags.csv +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/data/requirements-core-micropython.txt +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/data/requirements-core-pycopy.txt +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/downloader.py +0 -0
- {micropython_stubber-1.23.2/src/stubber/commands → micropython_stubber-1.24.4/src/stubber/freeze}/__init__.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/freeze/freeze_folder.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/get_cpython.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/get_lobo.py +0 -0
- {micropython_stubber-1.23.2/src/stubber/freeze → micropython_stubber-1.24.4/src/stubber/publish}/__init__.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/publish/bump.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/publish/candidates.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/publish/defaults.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/publish/enums.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/publish/helpers.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/publish/pathnames.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/publish/pypi.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/rst/__init__.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/rst/classsort.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/rst/output_dict.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/rst/report_return.py +0 -0
- {micropython_stubber-1.23.2/src/stubber/publish → micropython_stubber-1.24.4/src/stubber/tools}/__init__.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/tools/readme.md +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/update_fallback.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/utils/__init__.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/utils/makeversionhdr.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/utils/manifest.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/utils/repos.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/utils/stubmaker.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/utils/typed_config_toml.py +0 -0
- {micropython_stubber-1.23.2 → micropython_stubber-1.24.4}/src/stubber/variants.py +0 -0
@@ -1,19 +1,18 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: micropython-stubber
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.24.4
|
4
4
|
Summary: Tooling to create and maintain stubs for MicroPython
|
5
|
-
Home-page: https://github.com/Josverl/micropython-stubber#readme
|
6
5
|
License: MIT
|
7
6
|
Keywords: MicroPython,stubs,vscode,pyright,linting,static type check
|
8
7
|
Author: Jos Verlinde
|
9
8
|
Author-email: jos_verlinde@hotmail.com
|
10
|
-
Requires-Python: >=3.9,<4.0
|
9
|
+
Requires-Python: >=3.9.2,<4.0
|
11
10
|
Classifier: License :: OSI Approved :: MIT License
|
12
11
|
Classifier: Programming Language :: Python :: 3
|
13
|
-
Classifier: Programming Language :: Python :: 3.9
|
14
12
|
Classifier: Programming Language :: Python :: 3.10
|
15
13
|
Classifier: Programming Language :: Python :: 3.11
|
16
14
|
Classifier: Programming Language :: Python :: 3.12
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
17
16
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
18
17
|
Classifier: Programming Language :: Python :: Implementation :: MicroPython
|
19
18
|
Classifier: Topic :: Software Development :: Build Tools
|
@@ -26,27 +25,28 @@ Requires-Dist: executing (>=2.0.1,<3.0.0)
|
|
26
25
|
Requires-Dist: importlib-metadata (>=1,<9) ; python_version < "3.8"
|
27
26
|
Requires-Dist: libcst (>=1.1.0,<2.0.0)
|
28
27
|
Requires-Dist: loguru (>=0.6,<0.8)
|
29
|
-
Requires-Dist: mpflash (>=1.
|
30
|
-
Requires-Dist: mpremote (>=1.
|
31
|
-
Requires-Dist: mypy (
|
28
|
+
Requires-Dist: mpflash (>=1.24.7)
|
29
|
+
Requires-Dist: mpremote (>=1.24.1)
|
30
|
+
Requires-Dist: mypy (>=1.10)
|
32
31
|
Requires-Dist: mypy-gitlab-code-quality (>=1.1.0,<2.0.0)
|
33
|
-
Requires-Dist: packaging (>=
|
32
|
+
Requires-Dist: packaging (>=24.2,<25.0)
|
34
33
|
Requires-Dist: pipx (>=1.1.0,<2.0.0)
|
34
|
+
Requires-Dist: poetry (>=2.0.1,<3.0.0)
|
35
|
+
Requires-Dist: pydeps (==3.0.1)
|
35
36
|
Requires-Dist: pygithub (>=2.1.1,<3.0.0)
|
36
37
|
Requires-Dist: pypi-simple (>=1.0.0,<2.0.0)
|
37
|
-
Requires-Dist: pyright (>=1.1.341
|
38
|
-
Requires-Dist: pyserial (>=3.5
|
39
|
-
Requires-Dist:
|
40
|
-
Requires-Dist: python-minifier (>=2.7.0,<3.0.0) ; python_version < "3.12"
|
38
|
+
Requires-Dist: pyright (>=1.1.341)
|
39
|
+
Requires-Dist: pyserial (>=3.5)
|
40
|
+
Requires-Dist: python-minifier (>=2.7.0,<3.0.0) ; python_version < "3.14"
|
41
41
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
42
42
|
Requires-Dist: rich-click (>=1.8.3,<2.0.0)
|
43
|
-
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
|
44
43
|
Requires-Dist: tenacity (>=8.2.2,<9.0.0)
|
45
44
|
Requires-Dist: tomli (>=2.0.1,<3.0.0) ; python_version < "3.11"
|
46
45
|
Requires-Dist: tomli-w (>=1.0.0,<2.0.0)
|
47
46
|
Requires-Dist: typed-config (>=1.3.0,<2.0.0)
|
48
47
|
Requires-Dist: urllib3 (>=2.2.2,<3.0.0)
|
49
48
|
Project-URL: Documentation, https://micropython-stubber.readthedocs.io/
|
49
|
+
Project-URL: Homepage, https://github.com/Josverl/micropython-stubber#readme
|
50
50
|
Project-URL: Repository, https://github.com/Josverl/micropython-stubber
|
51
51
|
Description-Content-Type: text/markdown
|
52
52
|
|
@@ -59,7 +59,6 @@ Description-Content-Type: text/markdown
|
|
59
59
|
[](#Contributions)
|
60
60
|
<!-- break -->
|
61
61
|
[](https://github.com/Josverl/micropython-stubber/actions/workflows/pytest.yml)
|
62
|
-
[](https://github.com/Josverl/micropython-stubber/actions/workflows/pytest_mpflash.yml)
|
63
62
|
[](https://micropython-stubber.readthedocs.io/en/latest/?badge=latest "Document build status badge")
|
64
63
|
<!-- break -->
|
65
64
|
[ goal is to create a VSCode add-in to simplify the configuration, and allow easy switching between different firmwares and versions.
|
122
|
-
|
117
|
+
2. Micropython-stubber uses [MPFlash](https://github.com/Josverl/mpflash?tab=readme-ov-file) in some of its operations.
|
118
|
+
mpflash was formerly hosted in this repo, but has been moved to its own repo.
|
123
119
|
|
124
120
|
## Install and basic usage of the stubber tool
|
125
121
|
|
@@ -172,11 +168,27 @@ for more info see [**Renaming a branch**](https://docs.github.com/en/repositorie
|
|
172
168
|
|
173
169
|
## Licensing
|
174
170
|
|
175
|
-
|
171
|
+
`MicroPython-Stubber` is licensed under the MIT license, and all contributions should follow this [LICENSE](LICENSE).
|
176
172
|
|
177
173
|
|
178
174
|
# Contributions
|
179
175
|
<!-- spell-checker: disable -->
|
176
|
+
<!--
|
177
|
+
To add via the cli run the following command:
|
178
|
+
npx all-contributors-cli add user things
|
179
|
+
npx all-contributors-cli generate
|
180
|
+
|
181
|
+
- bug
|
182
|
+
- tool
|
183
|
+
- stubs
|
184
|
+
- test
|
185
|
+
- doc
|
186
|
+
- code
|
187
|
+
- research
|
188
|
+
- ideas
|
189
|
+
- content
|
190
|
+
- mpflash
|
191
|
+
-->
|
180
192
|
|
181
193
|
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
182
194
|
<!-- prettier-ignore-start -->
|
@@ -184,7 +196,7 @@ Both `MicroPython-Stubber` and `mpflash` are licensed under the MIT license, and
|
|
184
196
|
<table>
|
185
197
|
<tbody>
|
186
198
|
<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
|
199
|
+
<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>
|
188
200
|
<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
201
|
<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
202
|
<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>
|
@@ -213,23 +225,9 @@ Both `MicroPython-Stubber` and `mpflash` are licensed under the MIT license, and
|
|
213
225
|
<tr>
|
214
226
|
<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
227
|
<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/
|
217
|
-
<td align="center" valign="top" width="14.28%"><a href="https://
|
218
|
-
<td align="center" valign="top" width="14.28%"><a href="
|
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>
|
228
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hlovatt"><img src="https://avatars.githubusercontent.com/u/8424169?v=4?s=100" width="100px;" alt="Howard Lovatt"/><br /><sub><b>Howard Lovatt</b></sub></a><br /><a href="#stubs-hlovatt" title="MicroPython stubs">🖍️</a> <a href="#research-hlovatt" title="Research">🔬</a></td>
|
229
|
+
<td align="center" valign="top" width="14.28%"><a href="https://virtualwolf.org/"><img src="https://avatars.githubusercontent.com/u/1644623?v=4?s=100" width="100px;" alt="VirtualWolf"/><br /><sub><b>VirtualWolf</b></sub></a><br /><a href="#test-VirtualWolf" title="Test">✅</a></td>
|
230
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lukaskremla"><img src="https://avatars.githubusercontent.com/u/155779787?v=4?s=100" width="100px;" alt="Lukas Kremla"/><br /><sub><b>Lukas Kremla</b></sub></a><br /><a href="#test-lukaskremla" title="Test">✅</a></td>
|
233
231
|
</tr>
|
234
232
|
</tbody>
|
235
233
|
</table>
|
@@ -8,7 +8,7 @@ repo-path = "./repos"
|
|
8
8
|
|
9
9
|
[tool.poetry]
|
10
10
|
name = "micropython-stubber"
|
11
|
-
version = "1.
|
11
|
+
version = "1.24.4"
|
12
12
|
description = "Tooling to create and maintain stubs for MicroPython"
|
13
13
|
authors = ["Jos Verlinde <jos_verlinde@hotmail.com>"]
|
14
14
|
license = "MIT"
|
@@ -47,12 +47,12 @@ mpflash = "mpflash.cli_main:mpflash"
|
|
47
47
|
mpremote = "mpremote.main:main"
|
48
48
|
|
49
49
|
[tool.poetry.dependencies]
|
50
|
-
python = ">=3.9,<4.0"
|
51
|
-
python-minifier = { version = "^2.7.0", python = "<3.
|
50
|
+
python = ">=3.9.2,<4.0"
|
51
|
+
python-minifier = { version = "^2.7.0", python = "<3.14" }
|
52
52
|
requests = "^2.32.3"
|
53
|
-
mypy = "1.10
|
54
|
-
mpflash = "
|
55
|
-
mpremote = "
|
53
|
+
mypy = ">=1.10"
|
54
|
+
mpflash = ">=1.24.7"
|
55
|
+
mpremote = ">=1.24.1"
|
56
56
|
# others
|
57
57
|
autoflake = ">=1.7,<3.0"
|
58
58
|
black = ">=22.10,<25.0"
|
@@ -63,20 +63,20 @@ executing = "^2.0.1"
|
|
63
63
|
importlib-metadata = { version = ">=1,<9", python = "<3.8" }
|
64
64
|
loguru = ">=0.6,<0.8"
|
65
65
|
mypy-gitlab-code-quality = "^1.1.0"
|
66
|
-
packaging = "
|
66
|
+
packaging = "^24.2"
|
67
67
|
pipx = "^1.1.0"
|
68
68
|
pygithub = "^2.1.1"
|
69
|
-
pyright = "
|
70
|
-
pyserial = "
|
71
|
-
pysondb-v2 = "^2.1.0"
|
69
|
+
pyright = ">=1.1.341"
|
70
|
+
pyserial = ">=3.5"
|
72
71
|
pypi-simple = "^1.0.0"
|
73
72
|
rich-click = "^1.8.3"
|
74
|
-
tabulate = "^0.9.0"
|
75
73
|
tenacity = "^8.2.2"
|
76
74
|
tomli = { version = "^2.0.1", python = "<3.11" }
|
77
75
|
tomli-w = "^1.0.0"
|
78
76
|
typed-config = "^1.3.0"
|
79
77
|
urllib3 = "^2.2.2"
|
78
|
+
poetry = "^2.0.1"
|
79
|
+
pydeps = "3.0.1"
|
80
80
|
|
81
81
|
[tool.poetry.group.docs]
|
82
82
|
optional = true
|
@@ -101,11 +101,12 @@ mock = "^4.0.3"
|
|
101
101
|
distro = "^1.8.0"
|
102
102
|
fasteners = "^0.19"
|
103
103
|
jsons = "^1.6.3"
|
104
|
+
pytest-cov = "^6.0.0"
|
104
105
|
|
105
106
|
[tool.poetry.group.dev]
|
106
107
|
optional = true
|
107
108
|
[tool.poetry.group.dev.dependencies]
|
108
|
-
pydeps = "
|
109
|
+
pydeps = ">=1.10.22,<4.0.0"
|
109
110
|
ipykernel = "^6.23.1"
|
110
111
|
python-dotenv = "^1.0.0"
|
111
112
|
pydocstyle = "^6.3.0"
|
@@ -172,6 +173,7 @@ reportUnboundVariable = "information"
|
|
172
173
|
ReportSelfClsParameterName = "information"
|
173
174
|
reportOptionalSubscript = "information"
|
174
175
|
reportCallInDefaultInitializer = "error"
|
176
|
+
# reportAssignmentType = "warning"
|
175
177
|
# Section 3 - reduce noise
|
176
178
|
reportMissingTypeStubs = "none"
|
177
179
|
reportOptionalMemberAccess = "none" # "read" is not a known member of "None" - occurs often in frozen code
|
@@ -187,6 +189,7 @@ reportUnknownVariableType = "none"
|
|
187
189
|
reportUntypedNamedTuple = "none"
|
188
190
|
|
189
191
|
|
192
|
+
|
190
193
|
# "executionEnvironments" = [
|
191
194
|
# { "root" = "src/stubber/boards", "extraPaths" = [
|
192
195
|
# "typings_mpy",
|
@@ -227,9 +230,7 @@ python_files = ["test_*.py", "*_test.py"]
|
|
227
230
|
testpaths = [
|
228
231
|
"tests",
|
229
232
|
"src/stubber",
|
230
|
-
"
|
231
|
-
"repos/micropython-stubs/tests",
|
232
|
-
"modules/**/tests",
|
233
|
+
# "repos/micropython-stubs/tests",
|
233
234
|
]
|
234
235
|
norecursedirs = [
|
235
236
|
".*",
|
@@ -248,7 +249,6 @@ addopts = "--verbose --capture=no -m 'not basicgit'"
|
|
248
249
|
|
249
250
|
markers = [
|
250
251
|
"stubber: marks tests of the stubber tool",
|
251
|
-
"mpflash: marks tests of the mpflash tool",
|
252
252
|
"snippets: test snippets to check the stubs",
|
253
253
|
|
254
254
|
"legacy: reeally old tests that need to be updated or removed",
|
@@ -282,7 +282,7 @@ markers = [
|
|
282
282
|
[tool.coverage.run]
|
283
283
|
parallel = false
|
284
284
|
branch = true
|
285
|
-
source = ["src/stubber"
|
285
|
+
source = ["src/stubber"]
|
286
286
|
omit = [
|
287
287
|
# helper files in board
|
288
288
|
"*/boot.py",
|
@@ -295,7 +295,6 @@ omit = [
|
|
295
295
|
|
296
296
|
# not my code
|
297
297
|
"*/src/stubber/tools/*.py",
|
298
|
-
"*/src/mpflash/mpflash/vendored/*.py",
|
299
298
|
|
300
299
|
# partial files for variant generation
|
301
300
|
"*/codemod/_partials/*.py",
|
@@ -379,3 +378,40 @@ method_length = 50
|
|
379
378
|
method_cyclomatic_complexity = 99
|
380
379
|
method_cognitive_complexity = 99
|
381
380
|
method_working_memory = 99
|
381
|
+
|
382
|
+
|
383
|
+
[tool.ruff]
|
384
|
+
# Exclude a variety of commonly ignored directories.
|
385
|
+
|
386
|
+
# Same as Black.
|
387
|
+
line-length = 140
|
388
|
+
indent-width = 4
|
389
|
+
|
390
|
+
#Stubs should be usable Python 3.9
|
391
|
+
target-version = "py39"
|
392
|
+
|
393
|
+
[tool.ruff.format]
|
394
|
+
# Like Black, use double quotes for strings.
|
395
|
+
quote-style = "double"
|
396
|
+
exclude = [".*", "__*", "dist", "repos"]
|
397
|
+
|
398
|
+
# Like Black, indent with spaces, rather than tabs.
|
399
|
+
indent-style = "space"
|
400
|
+
|
401
|
+
# Like Black, respect magic trailing commas.
|
402
|
+
skip-magic-trailing-comma = false
|
403
|
+
|
404
|
+
# Like Black, automatically detect the appropriate line ending.
|
405
|
+
line-ending = "auto"
|
406
|
+
|
407
|
+
[tool.ruff.lint]
|
408
|
+
exclude = [".*", "__*", "dist", "repos"]
|
409
|
+
# # Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
|
410
|
+
# # Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
|
411
|
+
# # McCabe complexity (`C901`) by default.
|
412
|
+
# select = ["E4", "E7", "E9", "F", "U"]
|
413
|
+
# ignore = ["E402", "E741", "F821", "F403", "UP015" ] # , "U032", "U035"]
|
414
|
+
# # Allow fix for all enabled rules (when `--fix`) is provided.
|
415
|
+
# fixable = ["ALL"]
|
416
|
+
# unfixable = []
|
417
|
+
|
@@ -7,7 +7,6 @@
|
|
7
7
|
[](#Contributions)
|
8
8
|
<!-- break -->
|
9
9
|
[](https://github.com/Josverl/micropython-stubber/actions/workflows/pytest.yml)
|
10
|
-
[](https://github.com/Josverl/micropython-stubber/actions/workflows/pytest_mpflash.yml)
|
11
10
|
[](https://micropython-stubber.readthedocs.io/en/latest/?badge=latest "Document build status badge")
|
12
11
|
<!-- break -->
|
13
12
|
[ goal is to create a VSCode add-in to simplify the configuration, and allow easy switching between different firmwares and versions.
|
70
|
-
|
65
|
+
2. Micropython-stubber uses [MPFlash](https://github.com/Josverl/mpflash?tab=readme-ov-file) in some of its operations.
|
66
|
+
mpflash was formerly hosted in this repo, but has been moved to its own repo.
|
71
67
|
|
72
68
|
## Install and basic usage of the stubber tool
|
73
69
|
|
@@ -120,11 +116,27 @@ for more info see [**Renaming a branch**](https://docs.github.com/en/repositorie
|
|
120
116
|
|
121
117
|
## Licensing
|
122
118
|
|
123
|
-
|
119
|
+
`MicroPython-Stubber` is licensed under the MIT license, and all contributions should follow this [LICENSE](LICENSE).
|
124
120
|
|
125
121
|
|
126
122
|
# Contributions
|
127
123
|
<!-- spell-checker: disable -->
|
124
|
+
<!--
|
125
|
+
To add via the cli run the following command:
|
126
|
+
npx all-contributors-cli add user things
|
127
|
+
npx all-contributors-cli generate
|
128
|
+
|
129
|
+
- bug
|
130
|
+
- tool
|
131
|
+
- stubs
|
132
|
+
- test
|
133
|
+
- doc
|
134
|
+
- code
|
135
|
+
- research
|
136
|
+
- ideas
|
137
|
+
- content
|
138
|
+
- mpflash
|
139
|
+
-->
|
128
140
|
|
129
141
|
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
130
142
|
<!-- prettier-ignore-start -->
|
@@ -132,7 +144,7 @@ Both `MicroPython-Stubber` and `mpflash` are licensed under the MIT license, and
|
|
132
144
|
<table>
|
133
145
|
<tbody>
|
134
146
|
<tr>
|
135
|
-
<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
|
147
|
+
<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>
|
136
148
|
<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>
|
137
149
|
<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>
|
138
150
|
<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>
|
@@ -161,23 +173,9 @@ Both `MicroPython-Stubber` and `mpflash` are licensed under the MIT license, and
|
|
161
173
|
<tr>
|
162
174
|
<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>
|
163
175
|
<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>
|
164
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/
|
165
|
-
<td align="center" valign="top" width="14.28%"><a href="https://
|
166
|
-
<td align="center" valign="top" width="14.28%"><a href="
|
167
|
-
<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>
|
168
|
-
<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>
|
169
|
-
</tr>
|
170
|
-
<tr>
|
171
|
-
<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>
|
172
|
-
<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>
|
173
|
-
<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>
|
174
|
-
<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>
|
175
|
-
<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>
|
176
|
-
<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>
|
177
|
-
<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>
|
178
|
-
</tr>
|
179
|
-
<tr>
|
180
|
-
<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>
|
176
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hlovatt"><img src="https://avatars.githubusercontent.com/u/8424169?v=4?s=100" width="100px;" alt="Howard Lovatt"/><br /><sub><b>Howard Lovatt</b></sub></a><br /><a href="#stubs-hlovatt" title="MicroPython stubs">🖍️</a> <a href="#research-hlovatt" title="Research">🔬</a></td>
|
177
|
+
<td align="center" valign="top" width="14.28%"><a href="https://virtualwolf.org/"><img src="https://avatars.githubusercontent.com/u/1644623?v=4?s=100" width="100px;" alt="VirtualWolf"/><br /><sub><b>VirtualWolf</b></sub></a><br /><a href="#test-VirtualWolf" title="Test">✅</a></td>
|
178
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lukaskremla"><img src="https://avatars.githubusercontent.com/u/155779787?v=4?s=100" width="100px;" alt="Lukas Kremla"/><br /><sub><b>Lukas Kremla</b></sub></a><br /><a href="#test-lukaskremla" title="Test">✅</a></td>
|
181
179
|
</tr>
|
182
180
|
</tbody>
|
183
181
|
</table>
|