This commit is contained in:
Sean Whalen
2019-09-13 08:24:48 -04:00
parent 6ce06f7f10
commit 61e282d6ea
4 changed files with 12 additions and 6 deletions
+5
View File
@@ -1,3 +1,8 @@
6.5.5
-----
- Set set minimum `publicsuffix2` version
6.5.4
-----
+1 -1
View File
@@ -117,7 +117,7 @@ def get_base_domain(domain, use_fresh_psl=False):
return psl.get_public_suffix(domain)
else:
return publicsuffix2.get_public_suffix(domain)
return publicsuffix2.get_sld(domain)
def query_dns(domain, record_type, cache=None, nameservers=None, timeout=2.0):
+1 -1
View File
@@ -5,7 +5,7 @@ dnspython>=1.16.0
expiringdict>=1.1.4
urllib3<1.25,>=1.21.1
requests>=2.2.16.0
publicsuffix2
publicsuffix2>=2.20190812
xmltodict>=0.12.0
geoip2>=2.9.0
imapclient>=2.1.0
+5 -4
View File
@@ -14,7 +14,7 @@ from setuptools import setup
from codecs import open
from os import path
__version__ = "6.5.4"
__version__ = "6.5.5"
description = "A Python package and CLI for parsing aggregate and " \
"forensic DMARC reports"
@@ -93,9 +93,10 @@ 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',
'urllib3<1.25,>=1.21.1', 'requests>=2.2.16.0',
'imapclient>=2.1.0', 'mail-parser>=3.9.2',
'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',
'mail-parser>=3.9.2',
'dateparser>=0.7.1',
'mailsuite>=1.2.1',
'elasticsearch>=6.3.1,<7.0.0',