Skip to content

Commit a950623

Browse files
committed
uasyncio: Rename asyncio_micro to uasyncio.
1 parent e6ca3a7 commit a950623

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
srctype = micropython-lib
22
type = module
3-
version = 0.5
3+
version = 0.6
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

asyncio_micro/setup.py renamed to uasyncio/setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
from setuptools import setup
66

77

8-
setup(name='micropython-asyncio_micro',
9-
version='0.5',
10-
description='asyncio_micro module for MicroPython',
8+
setup(name='micropython-uasyncio',
9+
version='0.6',
10+
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',
1313
author='Paul Sokolovsky',
1414
author_email='[email protected]',
1515
maintainer='MicroPython Developers',
1616
maintainer_email='[email protected]',
1717
license='MIT',
18-
py_modules=['asyncio_micro'],
18+
py_modules=['uasyncio'],
1919
install_requires=['micropython-heapq', 'micropython-errno', 'micropython-select', 'micropython-logging'])

asyncio_micro/test_call_soon.py renamed to uasyncio/test_call_soon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import asyncio_micro as asyncio
1+
import uasyncio as asyncio
22
import time
33

44

asyncio_micro/test_http_client.py renamed to uasyncio/test_http_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import asyncio_micro as asyncio
1+
import uasyncio as asyncio
22

33
@asyncio.coroutine
44
def print_http_headers(url):

asyncio_micro/test_http_server.py renamed to uasyncio/test_http_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import asyncio_micro as asyncio
1+
import uasyncio as asyncio
22

33
@asyncio.coroutine
44
def serve(reader, writer):
File renamed without changes.

0 commit comments

Comments
 (0)