From 73bd87126846dc5ac180b2a376eb4b0ab3d64ad8 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 20 Jan 2018 11:49:53 +0200 Subject: [PATCH] hashlib: Release 2.4.0-4. --- hashlib/metadata.txt | 2 +- hashlib/setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hashlib/metadata.txt b/hashlib/metadata.txt index f4965bfa..e46150c7 100644 --- a/hashlib/metadata.txt +++ b/hashlib/metadata.txt @@ -1,3 +1,3 @@ srctype=pypy type=package -version = 2.4.0-3 +version = 2.4.0-4 diff --git a/hashlib/setup.py b/hashlib/setup.py index 6ba32066..2b52dbee 100644 --- a/hashlib/setup.py +++ b/hashlib/setup.py @@ -7,13 +7,13 @@ sys.path.append("..") import optimize_upip setup(name='micropython-hashlib', - version='2.4.0-3', + version='2.4.0-4', description='PyPy hashlib module ported to MicroPython', long_description='This is a module ported from PyPy 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-lib', author='PyPy Developers', author_email='pypy-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},