Move __version__ back

Fixes building from git/docker
This commit is contained in:
Sean Whalen
2022-05-09 15:34:01 -04:00
parent b9c3404989
commit 6702181400
4 changed files with 2 additions and 4 deletions
-1
View File
@@ -5,7 +5,6 @@ Changelog
-----
- Restore compatability with <8.0.0 configuration files (with deprecation warnings)
- Move `parsedmarc.__version__` to `parsedmarc.meta.__version__`
- Set default `reports_folder` to `Inbox` (rather than `INBOX`) when `msgraph` is configured
- Mark a message as read when fetching a message from Microsoft Graph
+1 -1
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
from parsedmarc.meta import __version__
__version__ = "8.1.0"
formatter = logging.Formatter(
fmt='%(levelname)8s:%(filename)s:%(lineno)d:%(message)s',
-1
View File
@@ -1 +0,0 @@
__version__ = "8.1.0"
+1 -1
View File
@@ -14,7 +14,7 @@ from setuptools import setup
from codecs import open
from os import path
from parsedmarc.meta import __version__
__version__ = "8.1.0"
description = "A Python package and CLI for parsing aggregate and " \
"forensic DMARC reports"