uasyncio.core: Doesn't depend on heapq module for some time now.

pull/16/head
Paul Sokolovsky 2014-12-17 00:31:38 +02:00
rodzic c7a9f63686
commit 14b6b6945b
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.8.2
author = Paul Sokolovsky
long_desc = Lightweight implementation of asyncio-like library built around native Python coroutines. (Core event loop).
depends = heapq, logging
depends = logging

Wyświetl plik

@ -6,7 +6,7 @@ from setuptools import setup
setup(name='micropython-uasyncio.core',
version='0.8.1',
version='0.8.2',
description='uasyncio.core module for MicroPython',
long_description='Lightweight implementation of asyncio-like library built around native Python coroutines. (Core event loop).',
url='https://github.com/micropython/micropython/issues/405',
@ -16,4 +16,4 @@ setup(name='micropython-uasyncio.core',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
packages=['uasyncio'],
install_requires=['micropython-heapq', 'micropython-logging'])
install_requires=['micropython-logging'])