| commit | 4ce854c2cfcdddf4d049ee312182c65832b3f5d4 | [log] [tgz] |
|---|---|---|
| author | fonsecaj <jpedrofonseca@av.it.pt> | Thu Oct 29 15:20:09 2020 +0000 |
| committer | fonsecaj <jpedrofonseca@av.it.pt> | Thu Oct 29 20:55:21 2020 +0200 |
| tree | 6e78eca54a23a2ad4854aebf727862f817742c3c | |
| parent | f296d2a468e38fef4145f526b5bc0726502d77cf [diff] [blame] |
Fixes Bug 1273 - aiokafka>0.7.0 needs extra dependency for python < 3.7.0 Change-Id: I7f698e2c7ed2c7ab34baa0fa651ea3d50c572151 Signed-off-by: fonsecaj <jpedrofonseca@av.it.pt>
diff --git a/setup.py b/setup.py index 25e36fd..157ffec 100644 --- a/setup.py +++ b/setup.py
@@ -44,10 +44,12 @@ include_package_data=True, # scripts=['nbi.py'], + # dataclasses is required by aiokafka for Python <3.7.0 install_requires=[ 'pymongo', 'aiokafka', 'PyYAML', 'pycrypto', + 'dataclasses', ], )