Skip to content

Doc backends #9101

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 3 commits into from
Aug 29, 2017
Merged
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
DOC: adjust backend docs header levels
  • Loading branch information
tacaswell committed Aug 27, 2017
commit 1847d22682ed7bc1ff219de987663ced49e82df0
11 changes: 7 additions & 4 deletions tutorials/introductory/usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,10 +284,13 @@ def my_plotter(ax, data1, data2, param_dict):
# Again, for these simple examples this style seems like overkill, however
# once the graphs get slightly more complex it pays off.
#
# Backends
# ========
#
# .. _what-is-a-backend:
#
# What is a backend?
# ==================
# ------------------
#
# A lot of documentation on the website and in the mailing lists refers
# to the "backend" and many new users are confused by this term.
Expand Down Expand Up @@ -462,7 +465,7 @@ def my_plotter(ax, data1, data2, param_dict):
# .. _PyQt5: https://riverbankcomputing.com/software/pyqt/intro
#
# WX backends
# ===========
# -----------
#
# At present the release version of `wxPython` (also known as wxPython classic)
# does not support python3. A work in progress redesigned version known as
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this statement still true? wxpython 4.0.0b1 seems to support py3k. I don't know when the support started, though.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wxpython 4.0 is the same as Phonix which is the first version to support python 3. We could update this to point to wx 4.0 beta

Expand All @@ -472,7 +475,7 @@ def my_plotter(ax, data1, data2, param_dict):
# .. _wxPython-Phoenix: https://wxpython.org/Phoenix/docs/html/main.html
#
# GTK and Cairo
# =============
# -------------
#
# Both `GTK2` and `GTK3` have implicit dependencies on PyCairo regardless of the
# specific Matplotlib backend used. Unfortunatly the latest release of PyCairo
Expand All @@ -481,7 +484,7 @@ def my_plotter(ax, data1, data2, param_dict):
# wrapper.
#
# How do I select PyQt4 or PySide?
# ========================================
# --------------------------------
#
# You can choose either PyQt4 or PySide when using the `qt4` backend by setting
# the appropriate value for `backend.qt4` in your :file:`matplotlibrc` file. The
Expand Down