Skip to content

Commit bba8fb1

Browse files
committed
urllib.parse: Requires collections.defaultdict class.
1 parent 38b6f61 commit bba8fb1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

urllib.parse/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 = package
3-
version = 0.5
4-
depends = re-pcre, collections
3+
version = 0.5.1
4+
depends = re-pcre, collections, collections.defaultdict

urllib.parse/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-urllib.parse',
9-
version='0.5',
9+
version='0.5.1',
1010
description='CPython urllib.parse module ported to MicroPython',
1111
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.',
1212
url='https://github.com/micropython/micropython/issues/405',
@@ -16,4 +16,4 @@
1616
maintainer_email='[email protected]',
1717
license='Python',
1818
packages=['urllib'],
19-
install_requires=['micropython-re-pcre', 'micropython-collections'])
19+
install_requires=['micropython-re-pcre', 'micropython-collections', 'micropython-collections.defaultdict'])

0 commit comments

Comments
 (0)