upip: Builtin module was renamed to "uos" (consistent with stmhal, etc.)

pull/65/merge
Paul Sokolovsky 2015-12-12 00:17:42 +02:00
rodzic 7eb1fbdf35
commit 14e945f1a3
3 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -1,6 +1,6 @@
srctype = micropython-lib srctype = micropython-lib
type = module type = module
version = 0.6.2 version = 0.6.3
author = Paul Sokolovsky author = Paul Sokolovsky
extra_modules = upip_errno, upip_gzip, upip_utarfile extra_modules = upip_errno, upip_gzip, upip_utarfile
desc = Simple package manager for MicroPython. desc = Simple package manager for MicroPython.

Wyświetl plik

@ -6,7 +6,7 @@ from setuptools import setup
setup(name='micropython-upip', setup(name='micropython-upip',
version='0.6.2', version='0.6.3',
description='Simple package manager for MicroPython.', 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.', 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', url='https://github.com/micropython/micropython/issues/405',

Wyświetl plik

@ -11,7 +11,7 @@ def upip_import(mod, sub=None):
return m return m
sys = upip_import("sys") sys = upip_import("sys")
import _os as os import uos as os
errno = upip_import("errno") errno = upip_import("errno")
gzip = upip_import("gzip") gzip = upip_import("gzip")