Skip to content

Commit c59c5c6

Browse files
committed
datetime: Release 3.3.3-1.
1 parent 107c175 commit c59c5c6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

datetime/metadata.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
srctype=dummy
2-
type=module
3-
version = 0.0.2
1+
srctype = cpython
2+
type = module
3+
version = 3.3.3-1

datetime/setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
import optimize_upip
88

99
setup(name='micropython-datetime',
10-
version='0.0.2',
11-
description='Dummy datetime module for MicroPython',
12-
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.',
10+
version='3.3.3-1',
11+
description='CPython datetime module ported to MicroPython',
12+
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
1313
url='https://github.com/micropython/micropython-lib',
14-
author='MicroPython Developers',
15-
author_email='micro-python@googlegroups.com',
14+
author='CPython Developers',
15+
author_email='python[email protected]',
1616
maintainer='MicroPython Developers',
1717
maintainer_email='[email protected]',
18-
license='MIT',
18+
license='Python',
1919
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
2020
py_modules=['datetime'])

0 commit comments

Comments
 (0)