Skip to content

Commit

Permalink
v3.0.1 (#93)
Browse files Browse the repository at this point in the history
- Fixes
    - Remove call to `fig.tight_layout()` when converting Matplotlib figure to SVG for PDF
  • Loading branch information
domvwt authored Feb 24, 2022
1 parent be5b5a0 commit 71443dc
Show file tree
Hide file tree
Showing 7 changed files with 1,735 additions and 1,770 deletions.
6 changes: 6 additions & 0 deletions docs/04-about/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Release Notes
=============

3.0.1 (2022-02-24)
------------------

- Fixes
- Remove call to `fig.tight_layout()` when converting Matplotlib figure to SVG for PDF

3.0.0 (2022-02-23)
------------------

Expand Down
1,718 changes: 849 additions & 869 deletions docs/examples/iris-report.html

Large diffs are not rendered by default.

1,776 changes: 878 additions & 898 deletions docs/examples/iris-report.ipynb

Large diffs are not rendered by default.

Binary file modified docs/examples/iris-report.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion esparto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

__author__ = """Dominic Thorn"""
__email__ = "[email protected]"
__version__ = "3.0.0"
__version__ = "3.0.1"

_MODULE_PATH: _Path = _Path(__file__).parent.absolute()

Expand Down
1 change: 0 additions & 1 deletion esparto/_content.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,6 @@ def to_html(self, **kwargs: bool) -> str:
else:
figsize = self.pdf_figsize
self.content.set_size_inches(*figsize)
self.content.tight_layout()

if output_format == "svg":

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "esparto"
version = "3.0.0"
version = "3.0.1"
description = "Data driven report builder for the PyData ecosystem."
authors = ["Dominic Thorn <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 71443dc

Please sign in to comment.