Skip to content

Commit

Permalink
Fix regression where vmin/vmax are ignored if discrete=True
Browse files Browse the repository at this point in the history
  • Loading branch information
lukelbd committed Oct 12, 2021
1 parent 3b0d9f7 commit 2e12d0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions WHATSNEW.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ Features
Bug fixes
---------

* Fix regression where `vmin` and `vmax` are again ignored when making plots
with discrete levels (:issue:`276`).
* Fix issue where passing `fontsize` to `~proplot.axes.Axes.format` fails to update
fontsize-relative title and a-b-c label sizes (:commit:`64406726`).
* Fix issue where `xbounds`, `ybounds`, and `fixticks` fail due to
Expand Down
2 changes: 1 addition & 1 deletion proplot/axes/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -2278,7 +2278,7 @@ def _parse_autolev(
def _parse_levels(
self, *args, N=None, levels=None, values=None, extend=None,
positive=False, negative=False, nozero=False, norm=None, norm_kw=None,
vmin=None, vmax=None, skip_autolev=False, min_levels=None, **kwargs,
skip_autolev=False, min_levels=None, **kwargs,
):
"""
Return levels resulting from a wide variety of keyword options.
Expand Down

0 comments on commit 2e12d0a

Please sign in to comment.