8000 hmac: Depends on warnings module. · micropython/micropython-lib@2f2aeae · GitHub
[go: up one dir, main page]

Skip to content

Commit 2f2aeae

Browse files
author
Paul Sokolovsky
committed
hmac: Depend 10000 s on warnings module.
1 parent 0d938a2 commit 2f2aeae

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

hmac/metadata.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
srctype = cpython
2+
type = module
3+
version = 3.4.2-1
4+
depends = warnings, hashlib

hmac/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
setup(name='micropython-hmac',
9-
version='0.1',
9+
version='3.4.2-1',
1010
description='CPython hmac 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',
@@ -15,5 +15,5 @@
1515
maintainer='MicroPython Developers',
1616
maintainer_email='micro-python@googlegroups.com',
1717
license='Python',
18-
install_requires=['micropython-hashlib'],
19-
py_modules=['hmac'])
18+
py_modules=['hmac'],
19+
install_requires=['micropython-warnings', 'micropython-hashlib'])

0 commit comments

Comments
 (0)
0