From f6668aae28f0595e7b7f94b66a89009e61ed7cdc Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 28 Jan 2017 01:58:05 +0300 Subject: [PATCH] uasyncio: Release 1.1. --- uasyncio/metadata.txt | 4 ++-- uasyncio/setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/uasyncio/metadata.txt b/uasyncio/metadata.txt index ceb57d3a..00dac655 100644 --- a/uasyncio/metadata.txt +++ b/uasyncio/metadata.txt @@ -1,6 +1,6 @@ srctype = micropython-lib type = package -version = 1.0.1 +version = 1.1 author = Paul Sokolovsky long_desc = Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess. -depends = errno, uasyncio.core +depends = uasyncio.core diff --git a/uasyncio/setup.py b/uasyncio/setup.py index 99ab7465..18da5166 100644 --- a/uasyncio/setup.py +++ b/uasyncio/setup.py @@ -7,7 +7,7 @@ sys.path.append("..") import optimize_upip setup(name='micropython-uasyncio', - version='1.0.1', + version='1.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-lib', @@ -18,4 +18,4 @@ setup(name='micropython-uasyncio', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, packages=['uasyncio'], - install_requires=['micropython-errno', 'micropython-uasyncio.core']) + install_requires=['micropython-uasyncio.core'])