Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9230cac

Browse filesBrowse files
committed
Merge branch 'v2.0.x'
2 parents 6bfd8b1 + b6ab3a4 commit 9230cac
Copy full SHA for 9230cac

File tree

Expand file treeCollapse file tree

4 files changed

+14
-1
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+14
-1
lines changed

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ install:
7878

7979
- |
8080
if [[ $BUILD_DOCS == true ]]; then
81-
pip install $PRE numpydoc ipython colorspacious
81+
pip install $PRE numpydoc ipython jsonschema mistune colorspacious
8282
pip install -q $PRE linkchecker
8383
wget https://github.com/google/fonts/blob/master/ofl/felipa/Felipa-Regular.ttf?raw=true -O Felipa-Regular.ttf
8484
wget http://mirrors.kernel.org/ubuntu/pool/universe/f/fonts-humor-sans/fonts-humor-sans_1.0-1_all.deb

‎doc/api/backend_qt5agg_api.rst

Copy file name to clipboard
+9Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
:mod:`matplotlib.backends.backend_qt5agg`
3+
=========================================
4+
5+
.. automodule:: matplotlib.backends.backend_qt5agg
6+
:members:
7+
:undoc-members:
8+
:show-inheritance:
9+

‎doc/api/index_backend_api.rst

Copy file name to clipboardExpand all lines: doc/api/index_backend_api.rst
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ backends
99
backend_tools_api.rst
1010
backend_gtkagg_api.rst
1111
backend_qt4agg_api.rst
12+
backend_qt5agg_api.rst
1213
backend_wxagg_api.rst
1314
backend_pdf_api.rst
1415
.. backend_webagg.rst

‎lib/matplotlib/tests/test_axes.py

Copy file name to clipboardExpand all lines: lib/matplotlib/tests/test_axes.py
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4009,12 +4009,15 @@ def test_rc_spines():
40094009
def test_rc_grid():
40104010
fig = plt.figure()
40114011
rc_dict0 = {
4012+
'axes.grid': True,
40124013
'axes.grid.axis': 'both'
40134014
}
40144015
rc_dict1 = {
4016+
'axes.grid': True,
40154017
'axes.grid.axis': 'x'
40164018
}
40174019
rc_dict2 = {
4020+
'axes.grid': True,
40184021
'axes.grid.axis': 'y'
40194022
}
40204023
dict_list = [rc_dict0, rc_dict1, rc_dict2]

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.