Skip to content

Commit a64c7cb

Browse files
committed
uasyncio: Update for rename microsocket -> usocket.
1 parent a950623 commit a64c7cb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

‎uasyncio/metadata.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
srctype = micropython-lib
22
type = module
3-
version = 0.6
3+
version = 0.6.1
44
author = Paul Sokolovsky
55
long_desc = Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.
66
depends = heapq, errno, select, logging

‎uasyncio/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
setup(name='micropython-uasyncio',
9-
version='0.6',
9+
version='0.6.1',
1010
description='uasyncio module for MicroPython',
1111
long_description='Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.',
1212
url='https://github.com/micropython/micropython/issues/405',

‎uasyncio/uasyncio.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def sleep(secs):
179179
yield Sleep(secs)
180180

181181

182-
import microsocket as _socket
182+
import usocket as _socket
183183

184184
class StreamReader:
185185

0 commit comments

Comments
 (0)