Skip to content

make wx backends compatible with wxPython-Phoenix #3421

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

Merged
merged 5 commits into from
May 23, 2015
Merged
Show file tree
Hide file tree
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
add import six as it is part of the standard imports
  • Loading branch information
wernerfb committed Apr 24, 2015
commit 91c4296ee69f470f8a8bf5a1de63d3de57b1d464
2 changes: 2 additions & 0 deletions lib/matplotlib/backends/backend_wxagg.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from __future__ import (absolute_import, division, print_function,
unicode_literals)

import six

import matplotlib
from matplotlib.figure import Figure

Expand Down
1 change: 1 addition & 0 deletions lib/matplotlib/backends/wx_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from __future__ import (absolute_import, division, print_function,
unicode_literals)

import six
from distutils.version import LooseVersion

missingwx = "Matplotlib backend_wx and backend_wxagg require wxPython >=2.8.12"
Expand Down