Fix `ModuleNotFoundError` by adding `parsedmarc.mail` to the list of packages in `setup.py` (PR #308)
This commit is contained in:
Sean Whalen
2022-04-24 20:12:01 -04:00
parent adee1288c7
commit 64f8eef27b
3 changed files with 7 additions and 2 deletions

View File

@@ -1,6 +1,11 @@
Changelog
=========
8.0.1
-----
- Fix `ModuleNotFoundError` by adding `parsedmarc.mail` to the list of packages in `setup.py` (PR #308)
8.0.0
-----

View File

@@ -35,7 +35,7 @@ Features
* Parses draft and 1.0 standard aggregate/rua reports
* Parses forensic/failure/ruf reports
* Can parse reports from an inbox over IMAP
* Can parse reports from an inbox over IMAP, Microsoft Graph, or Gmail API
* Transparently handles gzip or zip compressed reports
* Consistent data structures
* Simple JSON and/or CSV output

View File

@@ -34,7 +34,7 @@ from parsedmarc.utils import is_outlook_msg, convert_outlook_msg
from parsedmarc.utils import parse_email
from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime
__version__ = "8.0.0"
__version__ = "8.0.1"
formatter = logging.Formatter(
fmt='%(levelname)8s:%(filename)s:%(lineno)d:%(message)s',