Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9230cac

Browse files
committed
Merge branch 'v2.0.x'
2 parents 6bfd8b1 + b6ab3a4 commit 9230cac

4 files changed

Lines changed: 14 additions & 1 deletion

File tree

.travis.yml

Lines 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

Lines 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

Lines 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

Lines 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)