uasyncio: Release 0.9.

pull/65/merge
Paul Sokolovsky 2015-12-13 01:55:06 +02:00
rodzic 8a32b1b38b
commit e9648dad01
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -1,6 +1,6 @@
srctype = micropython-lib
type = package
version = 0.8.1
version = 0.9
author = Paul Sokolovsky
long_desc = Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.
depends = errno, select, uasyncio.core
depends = errno, uasyncio.core

Wyświetl plik

@ -6,7 +6,7 @@ from setuptools import setup
setup(name='micropython-uasyncio',
version='0.8.1',
version='0.9',
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',
@ -16,4 +16,4 @@ setup(name='micropython-uasyncio',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
packages=['uasyncio'],
install_requires=['micropython-errno', 'micropython-select', 'micropython-uasyncio.core'])
install_requires=['micropython-errno', 'micropython-uasyncio.core'])