From ecdff4d339940d64f2b7f59e554412b289839603 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Sat, 16 Feb 2019 11:06:16 -0500 Subject: [PATCH] 6.1.3 Fix package requirements --- CHANGELOG.md | 5 +++++ setup.py | 13 +++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c39ca0a..3bf27ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +6.1.3 +----- + +- Fix package requirements + 6.1.2 ----- diff --git a/setup.py b/setup.py index 8db06be..4be3af7 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from setuptools import setup from codecs import open from os import path -__version__ = "6.1.2" +__version__ = "6.1.3" description = "A Python package and CLI for parsing aggregate and " \ "forensic DMARC reports" @@ -92,11 +92,12 @@ setup( # your project is installed. For an analysis of "install_requires" vs pip's # requirements files see: # https://packaging.python.org/en/latest/requirements.html - install_requires=['dnspython', 'expiringdict', 'publicsuffix', - 'xmltodict', 'geoip2', 'urllib3>=1.21.1', - 'requests', 'imapclient', 'mail-parser', 'dateparser', - 'elasticsearch', - 'elasticsearch-dsl', 'kafka-python' + install_requires=['dnspython>=1.16.0', 'expiringdict>=1.1.4', + 'publicsuffix2', 'xmltodict>=0.12.0', 'geoip2>2.9.0', + 'urllib3>=1.21.1', 'requests>=2.2.16.0', + 'imapclient>=2.1.0', 'mail-parser>=3.9.2', + 'dateparser>=0.7.1', 'elasticsearch>=6.3.1', + 'elasticsearch-dsl>=0.0.12', 'kafka-python>=1.4.4' ], entry_points={