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

dpi was being set to 72 irrespective of what was supplied #20

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix run-mpl-test-suite for mpl master.
  • Loading branch information
anntzer committed Jan 15, 2020
commit a54ace541fd10a07e662fa8df0efc8e1f240020c
2 changes: 1 addition & 1 deletion run-mpl-test-suite.py
Original file line number Diff line number Diff line change
@@ -68,7 +68,7 @@ def _raise_on_image_difference(expected, actual, tol):

with warnings.catch_warnings(): # mpl 3.0
warnings.filterwarnings("ignore")
mpl.use("agg", warn=False, force=True)
mpl.use("agg", force=True)
from matplotlib import pyplot as plt

__orig_switch_backend = plt.switch_backend