Skip to content

Commit c5ebfe1

Browse files
ccooper21pfalcon
authored andcommitted
base64: Add missing dependencies.
1 parent c265899 commit c5ebfe1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

base64/metadata.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
srctype=cpython
22
type=module
3-
version = 3.3.3-3
4-
depends = struct
3+
version = 3.3.3-4
4+
depends = binascii, re-pcre, struct

base64/setup.py

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

99
setup(name='micropython-base64',
10-
version='3.3.3-3',
10+
version='3.3.3-4',
1111
description='CPython base64 module ported to MicroPython',
1212
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',
@@ -18,4 +18,4 @@
1818
license='Python',
1919
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
2020
py_modules=['base64'],
21-
install_requires=['micropython-struct'])
21+
install_requires=['micropython-binascii', 'micropython-re-pcre', 'micropython-struct'])

0 commit comments

Comments
 (0)