Skip to content

Commit f6668aa

Browse files
committed
uasyncio: Release 1.1.
1 parent 1bf1c74 commit f6668aa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

uasyncio/metadata.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
srctype = micropython-lib
22
type = package
3-
version = 1.0.1
3+
version = 1.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.
6-
depends = errno, uasyncio.core
6+
depends = uasyncio.core

uasyncio/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import optimize_upip
88

99
setup(name='micropython-uasyncio',
10-
version='1.0.1',
10+
version='1.1',
1111
description='uasyncio module for MicroPython',
1212
long_description='Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.',
1313
url='https://github.com/micropython/micropython-lib',
@@ -18,4 +18,4 @@
1818
license='MIT',
1919
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
2020
packages=['uasyncio'],
21-
install_requires=['micropython-errno', 'micropython-uasyncio.core'])
21+
install_requires=['micropython-uasyncio.core'])

0 commit comments

Comments
 (0)