From 2bb224b5629da59d699a82384d32e5d26d4b474e Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 10 Sep 2015 01:18:36 +0300 Subject: [PATCH] _libc: Deprecated, superseded by ffilib. --- _libc/metadata.txt | 6 +++--- _libc/setup.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/_libc/metadata.txt b/_libc/metadata.txt index 7d94352a..14e65a6d 100644 --- a/_libc/metadata.txt +++ b/_libc/metadata.txt @@ -1,7 +1,7 @@ dist_name = libc srctype = micropython-lib type = module -version = 0.2.1 +version = 0.3 author = Paul Sokolovsky -desc = MicroPython FFI helper module -long_desc = MicroPython FFI helper module to interface with underlying libc +desc = MicroPython FFI helper module (deprecated) +long_desc = MicroPython FFI helper module (deprecated, replaced by micropython-ffilib). diff --git a/_libc/setup.py b/_libc/setup.py index f9c99940..659622eb 100644 --- a/_libc/setup.py +++ b/_libc/setup.py @@ -6,9 +6,9 @@ from setuptools import setup setup(name='micropython-libc', - version='0.2.1', - description='MicroPython FFI helper module', - long_description='MicroPython FFI helper module to interface with underlying libc', + version='0.3', + description='MicroPython FFI helper module (deprecated)', + long_description='MicroPython FFI helper module (deprecated, replaced by micropython-ffilib).', url='https://github.com/micropython/micropython/issues/405', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com',