Skip to content

Commit 38448bb

Browse files
committed
os: Depends on stat.
1 parent a759b94 commit 38448bb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

os/metadata.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
srctype = micropython-lib
22
type = package
3-
version = 0.1.5
3+
version = 0.1.6
44
author = Paul Sokolovsky
5-
depends = libc, errno
5+
depends = libc, errno, stat

os/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
setup(name='micropython-os',
9-
version='0.1.5',
9+
version='0.1.6',
1010
description='os module for MicroPython',
1111
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.",
1212
url='https://github.com/micropython/micropython/issues/405',
@@ -16,4 +16,4 @@
1616
maintainer_email='micro-python@googlegroups.com',
1717
license='MIT',
1818
packages=['os'],
19-
install_requires=['micropython-libc', 'micropython-errno'])
19+
install_requires=['micropython-libc', 'micropython-errno', 'micropython-stat'])

0 commit comments

Comments
 (0)