Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ipython/matplotlib-inline
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.1.5
Choose a base ref
...
head repository: ipython/matplotlib-inline
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.1.6
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 17, 2022

  1. Return manager instead of None

    Fixes #18
    1kastner authored Aug 17, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    023bc08 View commit details

Commits on Aug 18, 2022

  1. Merge pull request #19 from 1kastner/patch-1

    Return manager instead of None - fixes #18.
    
    Will release quickly a 0.1.6 with this fix.
    fperez authored Aug 18, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6bc258f View commit details
  2. Release 0.1.6 to fix #18.

    fperez committed Aug 18, 2022
    Copy the full SHA
    fbf0ab8 View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 matplotlib_inline/__init__.py
  2. +1 −1 matplotlib_inline/backend_inline.py
2 changes: 1 addition & 1 deletion matplotlib_inline/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from . import backend_inline, config # noqa
__version__ = "0.1.5" # noqa
__version__ = "0.1.6" # noqa
2 changes: 1 addition & 1 deletion matplotlib_inline/backend_inline.py
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ def new_figure_manager_given_figure(num, figure):
# should be a no-op (otherwise we'll generate duplicate plots, since a user
# who set ioff() manually expects to make separate draw/show calls).
if not matplotlib.is_interactive():
return
return manager

# ensure current figure will be drawn, and each subsequent call
# of draw_if_interactive() moves the active figure to ensure it is