Skip to content

Commit

Permalink
8.15.1
Browse files Browse the repository at this point in the history
- Proper IMAP namespace fix (Closes issue #557 and issue #563)
  - Require `mailsuite>=1.9.17`
  - Revert PR #552
- Add pre-flight check for nameservers (PR #562 closes issue #543)
- Reformat code with `ruff`
  • Loading branch information
seanthegeek committed Oct 3, 2024
1 parent fdb4e4c commit 1ef3057
Show file tree
Hide file tree
Showing 29 changed files with 2,093 additions and 1,909 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
make html
- name: Check code style
run: |
ruff check *.py parsedmarc/*.py
ruff check .
- name: Run unit tests
run: |
coverage run tests.py
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

8.15.1
------

- Proper IMAP namespace fix (Closes issue #557 and issue #563)
- Require `mailsuite>=1.9.17`
- Revert PR #552
- Add pre-flight check for nameservers (PR #562 closes issue #543)
- Reformat code with `ruff`

8.15.0
------

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fi

. venv/bin/activate
pip install -U -r requirements.txt
flake8 parsedmarc
ruff format .
cd docs
make clean
make html
Expand Down
33 changes: 17 additions & 16 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,16 @@
#
import os
import sys

sys.path.insert(0, os.path.abspath(os.path.join("..", "..")))

from parsedmarc import __version__

# -- Project information -----------------------------------------------------

project = 'parsedmarc'
copyright = '2018 - 2023, Sean Whalen and contributors'
author = 'Sean Whalen and contributors'
project = "parsedmarc"
copyright = "2018 - 2023, Sean Whalen and contributors"
author = "Sean Whalen and contributors"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand All @@ -36,13 +37,15 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ['sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.todo',
'sphinx.ext.viewcode',
'sphinx.ext.githubpages',
'sphinx.ext.napoleon',
'myst_parser']
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.doctest",
"sphinx.ext.todo",
"sphinx.ext.viewcode",
"sphinx.ext.githubpages",
"sphinx.ext.napoleon",
"myst_parser",
]

myst_enable_extensions = [
"amsmath",
Expand All @@ -64,7 +67,7 @@
autoclass_content = "init"

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ["_templates"]


# The suffixes of source filenames.
Expand All @@ -81,13 +84,11 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'sphinx_rtd_theme'
html_theme = "sphinx_rtd_theme"

html_theme_options = {
'globaltoc_collapse': False
}
html_theme_options = {"globaltoc_collapse": False}

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ["_static"]
Loading

0 comments on commit 1ef3057

Please sign in to comment.