From 7eb1fbdf356e0b1c57e53e6b1ecd7c1d5012849b Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 12 Dec 2015 00:15:14 +0200 Subject: [PATCH] os: Builtin module was renamed to "uos" (consistent with stmhal, etc.) --- os/metadata.txt | 2 +- os/os/__init__.py | 2 +- os/setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/os/metadata.txt b/os/metadata.txt index c4717394..f371c622 100644 --- a/os/metadata.txt +++ b/os/metadata.txt @@ -1,5 +1,5 @@ srctype = micropython-lib type = package -version = 0.3 +version = 0.3.1 author = Paul Sokolovsky depends = ffilib, errno, stat diff --git a/os/os/__init__.py b/os/os/__init__.py index 587bd269..6bd0615c 100644 --- a/os/os/__init__.py +++ b/os/os/__init__.py @@ -5,7 +5,7 @@ import errno import stat as stat_ import ffilib try: - from _os import * + from uos import * except: pass diff --git a/os/setup.py b/os/setup.py index 3934fd55..0ac70dcd 100644 --- a/os/setup.py +++ b/os/setup.py @@ -6,7 +6,7 @@ from setuptools import setup setup(name='micropython-os', - version='0.3', + version='0.3.1', description='os module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython/issues/405',