diff --git a/README.md b/README.md index 956a294..0ddc6d1 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,7 @@ Also, as a summer loving person stuck in the Northern hemisphere, July is my fav - **`v0.1.1`**: Fix relative image link in readme. - **`v0.1.2`**: Remove unnecessary argument from rcmod to be compatible with matplotlib versions earlier than v3.4.x. - **`v0.1.3`**: Fix week number labelling bug in `month_plot()` and `calendar_plot()` +- **`v0.1.4`**: Avoid error when trying to access `mpl.cbook.MatplotlibDeprecationWarning` ### TODO: - Fix slight misalignment of plot and cbar when `date_grid` and `colorbar` are used in conjunction. diff --git a/setup.py b/setup.py index b18f4d3..6fed029 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="july", - version="0.1.3", + version="0.1.4", author="Edvard Hultén", author_email="edvard.hulten@gmail.com", description="A small library for creating pretty heatmaps of daily data.", diff --git a/src/july/__init__.py b/src/july/__init__.py index 6b23d90..be15b0d 100644 --- a/src/july/__init__.py +++ b/src/july/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.3" +__version__ = "0.1.4" __author__ = "Edvard Hultén" __contact__ = "edvard.hulten@gmail.com" diff --git a/src/july/rcmod.py b/src/july/rcmod.py index f5323f7..706fac2 100644 --- a/src/july/rcmod.py +++ b/src/july/rcmod.py @@ -51,5 +51,5 @@ def update_rcparams( rcmod["figure.dpi"] = dpi rcmod.update(rc_params_dict) with warnings.catch_warnings(): - warnings.simplefilter("ignore", mpl.cbook.MatplotlibDeprecationWarning) + warnings.simplefilter("ignore", mpl.MatplotlibDeprecationWarning) mpl.rcParams.update(rcmod)