Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions urllib.parse/metadata.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
srctype = cpython
type = package
version = 0.5
depends = re-pcre, collections
version = 0.5.1
depends = re-pcre, collections, collections.defaultdict
4 changes: 2 additions & 2 deletions urllib.parse/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


setup(name='micropython-urllib.parse',
version='0.5',
version='0.5.1',
description='CPython urllib.parse module ported to MicroPython',
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.',
url='https://github.com/micropython/micropython/issues/405',
Expand All @@ -16,4 +16,4 @@
maintainer_email='micro-python@googlegroups.com',
license='Python',
packages=['urllib'],
install_requires=['micropython-re-pcre', 'micropython-collections'])
install_requires=['micropython-re-pcre', 'micropython-collections', 'micropython-collections.defaultdict'])