From 0e5247d79f952b6a62880952e39d6ed07cb7e627 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Sat, 16 Feb 2019 11:12:17 -0500 Subject: [PATCH] 6.1.4 - Actually package requirements --- CHANGELOG.md | 5 +++++ parsedmarc/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bf27ee..e10beca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +6.1.4 +----- + +- Actually package requirements + 6.1.3 ----- diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index cfbc8af..1da952e 100644 --- a/parsedmarc/__init__.py +++ b/parsedmarc/__init__.py @@ -38,7 +38,7 @@ from parsedmarc.utils import is_outlook_msg, convert_outlook_msg from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime from parsedmarc.utils import parse_email -__version__ = "6.1.2" +__version__ = "6.1.4" logging.basicConfig( format='%(levelname)8s:%(filename)s:%(lineno)d:' diff --git a/setup.py b/setup.py index 4be3af7..0b93b08 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.3" +__version__ = "6.1.4" description = "A Python package and CLI for parsing aggregate and " \ "forensic DMARC reports" @@ -93,7 +93,7 @@ setup( # requirements files see: # https://packaging.python.org/en/latest/requirements.html install_requires=['dnspython>=1.16.0', 'expiringdict>=1.1.4', - 'publicsuffix2', 'xmltodict>=0.12.0', 'geoip2>2.9.0', + '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',