diff --git a/upip/metadata.txt b/upip/metadata.txt index 9714bf62..00f700a1 100644 --- a/upip/metadata.txt +++ b/upip/metadata.txt @@ -1,7 +1,7 @@ srctype = micropython-lib type = module -version = 0.5.5 +version = 0.5.7 author = Paul Sokolovsky -extra_modules = upip__libc, upip_errno, upip_gzip, upip_os, upip_os_path, upip_stat, upip_utarfile +extra_modules = upip_ffilib, upip_errno, upip_gzip, upip_os, upip_os_path, upip_stat, upip_utarfile desc = Simple package manager for MicroPython. long_desc = Simple package manager for MicroPython, targetting to be self-hosted (but not yet there). Compatible only with packages without custom setup.py code. diff --git a/upip/setup.py b/upip/setup.py index 6a8bd74f..8d21028f 100644 --- a/upip/setup.py +++ b/upip/setup.py @@ -6,7 +6,7 @@ from setuptools import setup setup(name='micropython-upip', - version='0.5.5', + version='0.5.7', description='Simple package manager for MicroPython.', long_description='Simple package manager for MicroPython, targetting to be self-hosted (but not yet there). Compatible only with packages without custom setup.py code.', url='https://github.com/micropython/micropython/issues/405', @@ -15,4 +15,4 @@ setup(name='micropython-upip', maintainer='MicroPython Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=['upip', 'upip__libc', 'upip_errno', 'upip_gzip', 'upip_os', 'upip_os_path', 'upip_stat', 'upip_utarfile']) + py_modules=['upip', 'upip_ffilib', 'upip_errno', 'upip_gzip', 'upip_os', 'upip_os_path', 'upip_stat', 'upip_utarfile'])