From a314da83f1c2d96f24f698e9d4125832635b719c Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 28 Oct 2017 02:17:24 +0300 Subject: [PATCH] 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. --- uasyncio.core/metadata.txt | 1 - uasyncio.core/setup.py | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/uasyncio.core/metadata.txt b/uasyncio.core/metadata.txt index c2f2112d..732f251a 100644 --- a/uasyncio.core/metadata.txt +++ b/uasyncio.core/metadata.txt @@ -3,4 +3,3 @@ type = package version = 1.5 author = Paul Sokolovsky long_desc = Lightweight implementation of asyncio-like library built around native Python coroutines. (Core event loop). -depends = logging diff --git a/uasyncio.core/setup.py b/uasyncio.core/setup.py index e96889bf..e97a57dd 100644 --- a/uasyncio.core/setup.py +++ b/uasyncio.core/setup.py @@ -17,5 +17,4 @@ setup(name='micropython-uasyncio.core', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, - packages=['uasyncio'], - install_requires=['micropython-logging']) + packages=['uasyncio'])