Skip to content

Commit

Permalink
lib/micropython-lib: Update submodule to latest.
Browse files Browse the repository at this point in the history
This brings in:
- requests improvements with overriding headers
- use non-u versions of built-in modules, including asyncio
- fix to logging so StreamHandler calls parent constructor
- various fixes to usb-device packages
- fixes to lora sx126x and sx127x drivers
- improvements to unix-ffi/sqlite3
- support additional gap_connect arguments in aioble

Signed-off-by: Damien George <[email protected]>
  • Loading branch information
dpgeorge committed Oct 24, 2024
1 parent 4c54335 commit 18c9abc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/micropython-lib
Submodule micropython-lib updated 88 files
+16 −0 .github/workflows/package_tests.yml
+9 −4 CONTRIBUTING.md
+2 −2 micropython/aioespnow/README.md
+3 −3 micropython/aioespnow/aioespnow.py
+1 −1 micropython/aiorepl/aiorepl.py
+1 −1 micropython/bluetooth/aioble-central/manifest.py
+1 −1 micropython/bluetooth/aioble-core/manifest.py
+11 −3 micropython/bluetooth/aioble/aioble/central.py
+1 −1 micropython/bluetooth/aioble/aioble/client.py
+15 −3 micropython/bluetooth/aioble/aioble/device.py
+1 −1 micropython/bluetooth/aioble/aioble/l2cap.py
+1 −1 micropython/bluetooth/aioble/aioble/peripheral.py
+1 −1 micropython/bluetooth/aioble/aioble/security.py
+1 −1 micropython/bluetooth/aioble/aioble/server.py
+1 −1 micropython/bluetooth/aioble/examples/l2cap_file_client.py
+1 −1 micropython/bluetooth/aioble/examples/l2cap_file_server.py
+1 −1 micropython/bluetooth/aioble/examples/temp_client.py
+1 −1 micropython/bluetooth/aioble/examples/temp_sensor.py
+1 −1 micropython/bluetooth/aioble/manifest.py
+1 −1 micropython/bluetooth/aioble/multitests/ble_buffered_characteristic.py
+1 −1 micropython/bluetooth/aioble/multitests/ble_characteristic.py
+1 −1 micropython/bluetooth/aioble/multitests/ble_descriptor.py
+1 −1 micropython/bluetooth/aioble/multitests/ble_notify.py
+1 −1 micropython/bluetooth/aioble/multitests/ble_shutdown.py
+1 −1 micropython/bluetooth/aioble/multitests/ble_write_capture.py
+8 −4 micropython/bluetooth/aioble/multitests/ble_write_order.py
+1 −1 micropython/bluetooth/aioble/multitests/perf_gatt_notify.py
+1 −1 micropython/bluetooth/aioble/multitests/perf_l2cap.py
+6 −6 micropython/drivers/display/lcd160cr/lcd160cr.py
+7 −7 micropython/drivers/radio/nrf24l01/nrf24l01test.py
+6 −6 micropython/lora/lora-sx126x/lora/sx126x.py
+1 −1 micropython/lora/lora-sx126x/manifest.py
+2 −2 micropython/lora/lora-sx127x/lora/sx127x.py
+1 −1 micropython/lora/lora-sx127x/manifest.py
+5 −12 micropython/net/ntptime/ntptime.py
+1 −1 micropython/uaiohttpclient/README
+1 −1 micropython/uaiohttpclient/example.py
+1 −1 micropython/uaiohttpclient/manifest.py
+1 −1 micropython/uaiohttpclient/uaiohttpclient.py
+7 −7 micropython/udnspkt/example_resolve.py
+0 −3 micropython/udnspkt/udnspkt.py
+1 −2 micropython/umqtt.robust/example_sub_robust.py
+2 −2 micropython/umqtt.robust/umqtt/robust.py
+2 −2 micropython/umqtt.simple/example_pub_button.py
+2 −2 micropython/umqtt.simple/example_sub_led.py
+3 −3 micropython/umqtt.simple/umqtt/simple.py
+3 −3 micropython/urllib.urequest/urllib/urequest.py
+12 −0 micropython/usb/README.md
+1 −1 micropython/usb/usb-device-cdc/manifest.py
+7 −3 micropython/usb/usb-device-cdc/usb/device/cdc.py
+1 −1 micropython/usb/usb-device-keyboard/manifest.py
+2 −2 micropython/usb/usb-device-keyboard/usb/device/keyboard.py
+1 −1 micropython/usb/usb-device/manifest.py
+44 −11 micropython/usb/usb-device/usb/device/core.py
+1 −1 python-ecosys/requests/manifest.py
+44 −25 python-ecosys/requests/requests/__init__.py
+155 −0 python-ecosys/requests/test_requests.py
+1 −1 python-stdlib/argparse/argparse.py
+1 −2 python-stdlib/base64/manifest.py
+3 −3 python-stdlib/binascii/test_binascii.py
+2 −2 python-stdlib/contextlib/contextlib.py
+1 −1 python-stdlib/contextlib/manifest.py
+1 −1 python-stdlib/contextlib/tests.py
+1 −1 python-stdlib/copy/copy.py
+2 −0 python-stdlib/datetime/test_datetime.py
+0 −9 python-stdlib/fnmatch/test_fnmatch.py
+4 −0 python-stdlib/hashlib/tests/test_sha256.py
+1 −0 python-stdlib/logging/logging.py
+1 −1 python-stdlib/logging/manifest.py
+4 −4 python-stdlib/pkg_resources/pkg_resources.py
+5 −12 python-stdlib/quopri/test_quopri.py
+1 −1 python-stdlib/unittest-discover/manifest.py
+1 −0 python-stdlib/unittest-discover/tests/sub/sub.py
+13 −0 python-stdlib/unittest-discover/tests/sub/test_module_import.py
+13 −6 python-stdlib/unittest-discover/unittest/__main__.py
+14 −6 tools/build.py
+91 −0 tools/ci.sh
+2 −2 unix-ffi/machine/example_timer.py
+0 −2 unix-ffi/machine/machine/timer.py
+1 −1 unix-ffi/os/os/__init__.py
+4 −4 unix-ffi/pwd/pwd.py
+1 −1 unix-ffi/select/select.py
+1 −1 unix-ffi/sqlite3/manifest.py
+125 −51 unix-ffi/sqlite3/sqlite3.py
+3 −0 unix-ffi/sqlite3/test_sqlite3.py
+3 −0 unix-ffi/sqlite3/test_sqlite3_2.py
+42 −0 unix-ffi/sqlite3/test_sqlite3_3.py
+6 −6 unix-ffi/time/time.py

0 comments on commit 18c9abc

Please sign in to comment.