Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Matplotlib Updates #2179

Merged
merged 10 commits into from
Nov 24, 2021
Merged

Matplotlib Updates #2179

merged 10 commits into from
Nov 24, 2021

Commits on Nov 24, 2021

  1. MNT: Fix SkewXTick for Matplotlib 3.5 (Fixes Unidata#2108)

    Matplotlib 3.5 removes the `label` kwarg, so we need to follow suit.
    dopplershift committed Nov 24, 2021
    Configuration menu
    Copy the full SHA
    8567d1e View commit details
    Browse the repository at this point in the history
  2. MNT: Bump minimum matplotlib to 3.3

    While this is shorter than our desired 2 year support window, it's
    easier to do this than to handle different __init__ parameters for XTick
    across different versions.
    dopplershift committed Nov 24, 2021
    Configuration menu
    Copy the full SHA
    75e6099 View commit details
    Browse the repository at this point in the history
  3. MNT: Eliminate warning from PlotGeometry

    Use `add_artist` instead of `add_collection` since Matplotlib as of 3.5
    has started checking that objects passed to `add_collection` inherit
    from `Collection`, which `TextCollection` currently does not do.
    dopplershift committed Nov 24, 2021
    Configuration menu
    Copy the full SHA
    4f34e4a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d09704e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5073746 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8d57fe5 View commit details
    Browse the repository at this point in the history
  7. MNT: Fix up hodograph tests

    For some reason these were plotting lines over themselves. Move the
    lines apart to make the test better.
    dopplershift committed Nov 24, 2021
    Configuration menu
    Copy the full SHA
    8a0f964 View commit details
    Browse the repository at this point in the history
  8. BUG: Fix up zorder on SkewT/Hodograph grids.

    Matplotlib 3.5 subtly changed artist draw order. These grid-like lines
    really need to be treated explicitly as such with zorder anyway.
    dopplershift committed Nov 24, 2021
    Configuration menu
    Copy the full SHA
    b89590c View commit details
    Browse the repository at this point in the history
  9. MNT: Tweak images and thresholds for matplotlib 3.5

    Small thresholds got bumped up, but anything at 0.1 or higher got a new
    image.
    dopplershift committed Nov 24, 2021
    Configuration menu
    Copy the full SHA
    3a39520 View commit details
    Browse the repository at this point in the history
  10. DOC: Fix up call to pcolormesh

    Was failing. To avoid warnings about edges, just go ahead and
    calculation the correct quad edges.
    dopplershift committed Nov 24, 2021
    Configuration menu
    Copy the full SHA
    4ca5f7c View commit details
    Browse the repository at this point in the history