From 20ac81343ba7771a1d498a9cb2da1ab94c2fbfad Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Mon, 23 Dec 2019 15:30:54 -0500 Subject: [PATCH] 6.7.4 - Update dependencies Fixes issue #134 --- CHANGELOG.md | 5 +++++ parsedmarc/__init__.py | 2 +- requirements.txt | 6 +++--- setup.py | 6 +++--- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1288939..f22fbb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +6.7.4 +----- + +- Update dependencies + 6.7.3 ----- - Make `dkim_aligned` and `spf_aligned` case insensitive (PR #132) diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index 3cf1379..18e2fca 100644 --- a/parsedmarc/__init__.py +++ b/parsedmarc/__init__.py @@ -33,7 +33,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.7.3" +__version__ = "6.7.4" logging.basicConfig( format='%(levelname)8s:%(filename)s:%(lineno)d:' diff --git a/requirements.txt b/requirements.txt index e8d3c66..3fa7d34 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,11 +3,11 @@ rstcheck>=3.3.1 pygments dnspython>=1.16.0 expiringdict>=1.1.4 -urllib3<1.25,>=1.21.1 -requests>=2.2.16.0 +urllib3>=1.25.7 +requests>=2.22.0 publicsuffix2>=2.20190812 xmltodict>=0.12.0 -geoip2>=2.9.0 +geoip2>=3.0.0 imapclient>=2.1.0 mail-parser>=3.9.2 dateparser>=0.7.2 diff --git a/setup.py b/setup.py index 6ac5daf..80cc6c7 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.7.3" +__version__ = "6.7.4" description = "A Python package and CLI for parsing aggregate and " \ "forensic DMARC reports" @@ -96,8 +96,8 @@ setup( # https://packaging.python.org/en/latest/requirements.html install_requires=['dnspython>=1.16.0', 'expiringdict>=1.1.4', 'publicsuffix2>=2.20190812', 'xmltodict>=0.12.0', - 'geoip2>=2.9.0', 'urllib3<1.25,>=1.21.1', - 'requests>=2.2.16.0', 'imapclient>=2.1.0', + 'geoip2>=3.0.0', 'urllib3>=1.25.7', + 'requests>=2.22.0', 'imapclient>=2.1.0', 'mail-parser>=3.9.2', 'dateparser>=0.7.2', 'mailsuite>=1.3.0',