mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-07-03 23:44:17 +00:00
3.9.2 - Fix PEP 8 spacing and update build.sh
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
3.9.2
|
||||
------
|
||||
|
||||
- Fix PEP 8 spacing
|
||||
- Update build script to fail when CI tests fail
|
||||
|
||||
3.9.1
|
||||
-----
|
||||
|
||||
|
||||
@@ -1,12 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
. ~/venv/domainaware/bin/activate
|
||||
pip install -U -r requirements.txt
|
||||
rstcheck README.rst
|
||||
cd docs && make html && cp -r _build/html/* ../../parsedmarc-docs/
|
||||
cd ..
|
||||
rm -rf dist/ build/
|
||||
flake8 parsedmarc.py
|
||||
flake8 tests.py
|
||||
python3 setup.py sdist
|
||||
python3 setup.py bdist_wheel
|
||||
pip install -U -r requirements.txt && rstcheck README.rst && cd docs && make html && cp -r _build/html/* ../../parsedmarc-docs/ && cd .. && flake8 parsedmarc && flake8 tests.py && rm -rf dist/ build/ && ython3 setup.py sdist && python3 setup.py bdist_wheel
|
||||
|
||||
@@ -43,7 +43,7 @@ import imapclient.exceptions
|
||||
import dateparser
|
||||
import mailparser
|
||||
|
||||
__version__ = "3.9.1"
|
||||
__version__ = "3.9.2"
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
logger.setLevel(logging.INFO)
|
||||
@@ -1100,6 +1100,7 @@ def get_imap_capabilities(server):
|
||||
"")
|
||||
return capabilities
|
||||
|
||||
|
||||
def get_dmarc_reports_from_inbox(host, user, password,
|
||||
reports_folder="INBOX",
|
||||
archive_folder="Archive",
|
||||
|
||||
Reference in New Issue
Block a user