Skip to content

Commit e0a110e

Browse files
author
Paul Sokolovsky
committed
_libc: Release 0.3.1, gzip 4k.
1 parent 12c046d commit e0a110e

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

_libc/metadata.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
dist_name = libc
22
srctype = micropython-lib
33
type = module
4-
version = 0.3
4+
version = 0.3.1
55
author = Paul Sokolovsky
66
desc = MicroPython FFI helper module (deprecated)
77
long_desc = MicroPython FFI helper module (deprecated, replaced by micropython-ffilib).

_libc/setup.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-libc',
9-
version='0.3',
10+
version='0.3.1',
1011
description='MicroPython FFI helper module (deprecated)',
1112
long_description='MicroPython FFI helper module (deprecated, replaced by micropython-ffilib).',
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='Paul Sokolovsky',
1415
author_email='micro-python@googlegroups.com',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='micro-python@googlegroups.com',
1718
license='MIT',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
py_modules=['_libc'])

0 commit comments

Comments
 (0)