Skip to content

Commit 12c046d

Browse files
committed
__future__: Release 0.0.3, gzip 4k.
1 parent 705f41c commit 12c046d

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

__future__/metadata.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
srctype=dummy
22
type=module
3-
version=0.0.2
3+
version=0.0.3
44
dist_name=future

__future__/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-future',
9-
version='0.0.2',
10+
version='0.0.3',
1011
description='Dummy __future__ module for MicroPython',
1112
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
12-
url='https://github.com/micropython/micropython%3Cspan%20class="x x-first x-last">/issues/405',
13+
url='https://github.com/micropython/micropython%3Cspan%20class="x x-first x-last">-lib',
1314
author='MicroPython Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='MIT',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
py_modules=['__future__'])

0 commit comments

Comments
 (0)