From bd2b08027ff554304042f7575d05c70b82eecb98 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Mon, 25 Feb 2019 11:00:48 -0500 Subject: [PATCH] 6.2.1 - Add missing `tqdm` dependency to `setup.py` --- CHANGELOG.md | 5 +++++ parsedmarc/__init__.py | 2 +- requirements.txt | 2 +- setup.py | 5 +++-- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3dbde0a..c6d7b59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +6.2.1 +----- + +- Add missing `tqdm` dependency to `setup.py` + 6.2.0 ----- diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index 8a00678..3a726aa 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.2.0" +__version__ = "6.2.1" logging.basicConfig( format='%(levelname)8s:%(filename)s:%(lineno)d:' diff --git a/requirements.txt b/requirements.txt index 0e5977d..9603f7b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ flake8 sphinx sphinx_rtd_theme wheel -tqdm +tqdm>=4.31.1 rstcheck>=3.3.1 pygments dnspython>=1.16.0 diff --git a/setup.py b/setup.py index 97847d3..078ccf4 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.2.0" +__version__ = "6.2.1" description = "A Python package and CLI for parsing aggregate and " \ "forensic DMARC reports" @@ -97,7 +97,8 @@ setup( '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' + 'elasticsearch-dsl>=0.0.12', 'kafka-python>=1.4.4', + 'tqdm>=4.31.1' ], entry_points={