3.9.2 - Fix PEP 8 spacing and update build.sh

This commit is contained in:
Sean Whalen
2018-09-06 13:43:41 -04:00
parent 8e102b4e95
commit a6094b2144
4 changed files with 10 additions and 11 deletions
+6
View File
@@ -1,3 +1,9 @@
3.9.2
------
- Fix PEP 8 spacing
- Update build script to fail when CI tests fail
3.9.1
-----
+1 -9
View File
@@ -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
+2 -1
View File
@@ -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",
+1 -1
View File
@@ -14,7 +14,7 @@ from setuptools import setup
from codecs import open
from os import path
__version__ = "3.9.1"
__version__ = "3.9.2"
description = "A Python package and CLI for parsing aggregate and " \
"forensic DMARC reports"