From 4d0d71f9744d734ad6cd55cb3ead78ca3b353d16 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 11 Oct 2014 05:20:55 +0300 Subject: [PATCH] uasyncio: Update for rename microsocket -> usocket. --- uasyncio/metadata.txt | 2 +- uasyncio/setup.py | 2 +- uasyncio/uasyncio.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/uasyncio/metadata.txt b/uasyncio/metadata.txt index bc22759b..d0901ec7 100644 --- a/uasyncio/metadata.txt +++ b/uasyncio/metadata.txt @@ -1,6 +1,6 @@ srctype = micropython-lib type = module -version = 0.6 +version = 0.6.1 author = Paul Sokolovsky long_desc = Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess. depends = heapq, errno, select, logging diff --git a/uasyncio/setup.py b/uasyncio/setup.py index 2bf389e2..0e56c754 100644 --- a/uasyncio/setup.py +++ b/uasyncio/setup.py @@ -6,7 +6,7 @@ from setuptools import setup setup(name='micropython-uasyncio', - version='0.6', + version='0.6.1', description='uasyncio module for MicroPython', long_description='Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.', url='https://github.com/micropython/micropython/issues/405', diff --git a/uasyncio/uasyncio.py b/uasyncio/uasyncio.py index cd7a00ec..e3befa8c 100644 --- a/uasyncio/uasyncio.py +++ b/uasyncio/uasyncio.py @@ -179,7 +179,7 @@ def sleep(secs): yield Sleep(secs) -import microsocket as _socket +import usocket as _socket class StreamReader: