uasyncio.core: logging is not longer hard dependency, remove it.

If user is going to enable logging in particular app, they should depend
on it themselves.
pull/222/merge
Paul Sokolovsky 2017-10-28 02:17:24 +03:00
rodzic 62fbfa9965
commit a314da83f1
2 zmienionych plików z 1 dodań i 3 usunięć

Wyświetl plik

@ -3,4 +3,3 @@ type = package
version = 1.5 version = 1.5
author = Paul Sokolovsky author = Paul Sokolovsky
long_desc = Lightweight implementation of asyncio-like library built around native Python coroutines. (Core event loop). long_desc = Lightweight implementation of asyncio-like library built around native Python coroutines. (Core event loop).
depends = logging

Wyświetl plik

@ -17,5 +17,4 @@ setup(name='micropython-uasyncio.core',
maintainer_email='micro-python@googlegroups.com', maintainer_email='micro-python@googlegroups.com',
license='MIT', license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['uasyncio'], packages=['uasyncio'])
install_requires=['micropython-logging'])