-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathgithub_stats.html
More file actions
1033 lines (1010 loc) · 130 KB
/
github_stats.html
File metadata and controls
1033 lines (1010 loc) · 130 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>GitHub Stats — Matplotlib 2.2.0 documentation</title>
<link rel="stylesheet" href="../_static/mpl.css"
type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css"
type="text/css" />
<link rel="stylesheet" href="../_static/gallery.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '2.2.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Matplotlib 2.2.0 documentation"
href="../_static/opensearch.xml"/>
<link rel="shortcut icon" href="../_static/favicon.ico"/>
<link rel="index" title="Index" href="../genindex.html"
/>
<link rel="search" title="Search" href="../search.html"
/>
<link rel="top" title="Matplotlib 2.2.0 documentation" href="../index.html" />
<link rel="up" title="User’s Guide" href="index.html" />
<link rel="next" title="License" href="license.html" />
<link rel="prev" title="New in Matplotlib 2.1.0" href="prev_whats_new/whats_new_2.1.0.html" />
<link rel="canonical" href="https://matplotlib.org/stable/users/github_stats.html" />
<script data-domain="matplotlib.org" defer="defer" src="https://views.scientific-python.org/js/script.js"></script>
</head>
<body>
<div id="unreleased-message"> You are reading an old version of the documentation (v2.2.0). For the latest version see <a href="https://matplotlib.org/stable/users/github_stats.html">https://matplotlib.org/stable/users/github_stats.html</a></div>
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px; position: relative;">
<a href="../index.html">
<div style="float: left; position: absolute; width: 496px; bottom: 0; padding-bottom: 24px"><span style="float: right; color: #789; background: white">Version 2.2.0</span></div>
<img src="../_static/logo2.png" height="125px" border="0" alt="matplotlib"/></a>
<!-- The "Fork me on github" ribbon -->
<div id="forkongithub"><a href="https://github.com/matplotlib/matplotlib">Fork me on GitHub</a></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="license.html" title="License"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="prev_whats_new/whats_new_2.1.0.html" title="New in Matplotlib 2.1.0"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">home</a>| </li>
<li><a href="../gallery/index.html">examples</a>| </li>
<li><a href="../tutorials/index.html">tutorials</a>| </li>
<li><a href="../api/pyplot_summary.html">pyplot</a>| </li>
<li><a href="../contents.html">docs</a> »</li>
<li><a href="index.html" accesskey="U">User’s Guide</a> »</li>
</ul>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper"><div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="../contents.html">Documentation overview</a><ul>
<li><a href="index.html">User’s Guide</a><ul>
<li>Previous: <a href="prev_whats_new/whats_new_2.1.0.html" title="previous chapter">New in Matplotlib 2.1.0</a></li>
<li>Next: <a href="license.html" title="next chapter">License</a></li>
</ul></li>
</ul></li>
</ul>
</div>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/users/github_stats.rst.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="../search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="github-stats">
<span id="id1"></span><h1>GitHub Stats<a class="headerlink" href="#github-stats" title="Permalink to this headline">¶</a></h1>
<p>GitHub stats for 2017/10/03 - 2018/02/11 (tag: v2.1.0)</p>
<p>These lists are automatically generated, and may be incomplete or contain duplicates.</p>
<p>We closed 315 issues and merged 458 pull requests.</p>
<p>The following 98 authors contributed 2045 commits.</p>
<ul class="simple">
<li>Adrien F. Vincent</li>
<li>ahed87</li>
<li>Allan Haldane</li>
<li>Andy Mastbaum</li>
<li>Antony Lee</li>
<li>apodemus</li>
<li>Arthur Paulino</li>
<li>as691454</li>
<li>ash13</li>
<li>Atharva Khare</li>
<li>Ben Root</li>
<li>Blaise Thompson</li>
<li>Brennan Magee</li>
<li>cclauss</li>
<li>cgohlke</li>
<li>Chris Holdgraf</li>
<li>Christoph Gohlke</li>
<li>clintval</li>
<li>Dakota Blair</li>
<li>David Stansby</li>
<li>deepyaman</li>
<li>Derek Kim</li>
<li>Derek Tropf</li>
<li>DietmarSchwertberger</li>
<li>Divyam Madaan</li>
<li>Doug Blank</li>
<li>Duncan Macleod</li>
<li>Elliott Sales de Andrade</li>
<li>Emlyn Price</li>
<li>Eric Firing</li>
<li>Eric Wieser</li>
<li>Erik M. Bray</li>
<li>et2010</li>
<li>Fabian Kloosterman</li>
<li>Federico Ariza</li>
<li>Filip Dimitrovski</li>
<li>fuzzythecat</li>
<li>hannah</li>
<li>Importance of Being Ernest</li>
<li>Jake Vanderplas</li>
<li>Jamie Nunez</li>
<li>Jody Klymak</li>
<li>John Hoffman</li>
<li>Joseph Albert</li>
<li>Jouni K. Seppänen</li>
<li>Juan Nunez-Iglesias</li>
<li>Justin Cai</li>
<li>Kevin Ji</li>
<li>Kexuan Sun</li>
<li>Kjell Le</li>
<li>Luca Verginer</li>
<li>luz.paz</li>
<li>Matthew Brett</li>
<li>Matthias Bussonnier</li>
<li>Matti Picus</li>
<li>mattip</li>
<li>mcquin</li>
<li>Michael Seifert</li>
<li>Mudit Surana</li>
<li>Nathan Goldbaum</li>
<li>navdeep rana</li>
<li>Nelle Varoquaux</li>
<li>nemanja</li>
<li>Nick Papior</li>
<li>Nikita Kniazev</li>
<li>Nis Martensen</li>
<li>nmartensen</li>
<li>Norman Fomferra</li>
<li>Paul Ganssle</li>
<li>Paul Hobson</li>
<li>Phil Ruffwind</li>
<li>Richard Gowers</li>
<li>Rob Harrigan</li>
<li>Robin Dunn</li>
<li>Roy Smith</li>
<li>Ryan May</li>
<li>Saket Choudhary</li>
<li>Sean Farley</li>
<li>Sergey B Kirpichev</li>
<li>settheory</li>
<li>simonpf</li>
<li>tdpetrou</li>
<li>Ted Petrou</li>
<li>Thomas A Caswell</li>
<li>Thomas Mansencal</li>
<li>Thomas Robitaille</li>
<li>Thomas Spura</li>
<li>Thomas VINCENT</li>
<li>Tim Hoffmann</li>
<li>Tom</li>
<li>Tom Augspurger</li>
<li>Tom Dupré la Tour</li>
<li>TomDonoghue</li>
<li>William Mallard</li>
<li>Yao-Yuan Mao</li>
<li>Yuval Langer</li>
<li>Zac-HD</li>
<li>ZWL</li>
</ul>
<p>GitHub issues and pull requests:</p>
<p>Pull Requests (458):</p>
<ul class="simple">
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10352/">PR #10352</a>: Explicitely destroy created wx PaintDC</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10377/">PR #10377</a>: FigureCanvasWx/Agg fixed size</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10399/">PR #10399</a>: Avoid double draw in qt5cairo.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9871/">PR #9871</a>: Cividis colormap added with short description in whats_new</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10413/">PR #10413</a>: DOC: Fix typos in section names.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10407/">PR #10407</a>: TST/FIX twinx and twiny w/ constrainedlayout</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10409/">PR #10409</a>: Remove unused _is_list_like. Move six import up.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10412/">PR #10412</a>: GTK backend deprecations</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10385/">PR #10385</a>: Fix deprecations in examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10389/">PR #10389</a>: import six</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10405/">PR #10405</a>: Minor updates to unit doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10366/">PR #10366</a>: Axes doc datanotes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10402/">PR #10402</a>: MNT: remove example based on Enthought Traits package</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/7545/">PR #7545</a>: Axisartist testing + bugfixes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10390/">PR #10390</a>: file() was removed in Python 3</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10394/">PR #10394</a>: Wrong explanation in docstring for add_subplot fixed</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10393/">PR #10393</a>: OOification of the new examples from #10306</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10306/">PR #10306</a>: Add ytick label right/left properties in matplotlibrc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9081/">PR #9081</a>: cell returned when added to Table</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10387/">PR #10387</a>: TST: Small fix to constrainedlayout7 test (removed image)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9708/">PR #9708</a>: Cleanup doc/conf.py & local sphinx extensions</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10370/">PR #10370</a>: Clean up units.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9934/">PR #9934</a>: MEP22 implementation for QT backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9151/">PR #9151</a>: Deprecate mlab functions</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10210/">PR #10210</a>: qt{4,5}cairo backend: the minimal version.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10379/">PR #10379</a>: FIX: re-jigger deprecation of rcParams using machinery in __init__</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10276/">PR #10276</a>: improve docstring of Axes.step</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10371/">PR #10371</a>: Fix constrainedlayout uneven grid specs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10220/">PR #10220</a>: Clip RGB data to valid range for imshow</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9991/">PR #9991</a>: MAINT: Use vectorization in plot_trisurf, simplifying greatly</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10363/">PR #10363</a>: Fix to allow both old and new style wx versions</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10309/">PR #10309</a>: Improve code generated by boilerplate.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10367/">PR #10367</a>: constrained layout guide typos</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9082/">PR #9082</a>: [MRG] Constrained_layout (geometry manager)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10359/">PR #10359</a>: Add attributes section to ColorbarBase doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10362/">PR #10362</a>: Switch to using StrictVersion in wx_compat.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10353/">PR #10353</a>: Fix syntax highlighting of sample bash and bibtex in rst markup.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10354/">PR #10354</a>: DOC: clarify that clim is not a valid kwarg if vmin/vmax are used</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10355/">PR #10355</a>: Fix typo in tutorial; & change mention of Qt4 to Qt5 (new default).</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10351/">PR #10351</a>: FIX: deprecate qt4/5 rcparams</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10347/">PR #10347</a>: Hide the backend.qt4/5 rcparam deprecation warning in test suite.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10348/">PR #10348</a>: When latex fails, make sure it does not write a dvi.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10226/">PR #10226</a>: Custom :rcparam: role.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10335/">PR #10335</a>: Update some image_comparison tests.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10282/">PR #10282</a>: Deprecate the backend.qt{4,5} rcParams.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10281/">PR #10281</a>: Move down logging levels in mpl/__init__ to DEBUG.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10337/">PR #10337</a>: Deprecate backend_tkagg.AxisMenu.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10242/">PR #10242</a>: Fix InvertedLog10Transform.inverted()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10331/">PR #10331</a>: Remove unnecessary calls to float() before division.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10327/">PR #10327</a>: Don’t call np.identity() in transforms.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10325/">PR #10325</a>: Minor improvements to quadmesh_demo.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10340/">PR #10340</a>: update set_drawstyle</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10333/">PR #10333</a>: Remove some commented out debug prints.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10301/">PR #10301</a>: Deprecate truncating saved unsized anims to 100 frames.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10332/">PR #10332</a>: Join strings instead of adding them.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10330/">PR #10330</a>: Shorten a long and now outdated comment.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10326/">PR #10326</a>: Various examples updates.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10328/">PR #10328</a>: Use deg2rad/rad2deg where appropriate.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10324/">PR #10324</a>: Linewrap backend_pgf to 79 characters.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10033/">PR #10033</a>: Improve handling of shared axes with specified aspect ratio</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10310/">PR #10310</a>: Add libdl on Unix-like systems.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10320/">PR #10320</a>: DOC: Tiny fixes, and possible overhaul, of the two scales example in the gallery</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10313/">PR #10313</a>: Make commented ACCEPTS statements inline comments</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10316/">PR #10316</a>: TST FIX pyqt5 5.9</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10302/">PR #10302</a>: Alternate implementation of lazy ticks.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9652/">PR #9652</a>: Align x and y labels between axes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10292/">PR #10292</a>: Unset the canvas manager when saving the figure.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10303/">PR #10303</a>: Simplify Axis.get_{major,minor}_ticks.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10295/">PR #10295</a>: Pass options to ps2pdf using <code class="docutils literal notranslate"><span class="pre">-foo#bar</span></code> instead of <code class="docutils literal notranslate"><span class="pre">-foo=bar</span></code>.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10311/">PR #10311</a>: Clean up next what’s new files</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10224/">PR #10224</a>: improve docstring of Axes.errorbar</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10308/">PR #10308</a>: Switch the lasso selector to use mpl event handling, not input().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10206/">PR #10206</a>: Don’t convert numbers plotted on an axis with units</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10305/">PR #10305</a>: Make the horizontal bar appear in AnchoredArtists example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10289/">PR #10289</a>: Ensure image scale factors are scalars</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10284/">PR #10284</a>: Allow ACCEPTS as ReST comment in docstrings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10266/">PR #10266</a>: More misc. typos</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10283/">PR #10283</a>: Deprecate obsolete ‘plugins.directory’ rcparam.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10286/">PR #10286</a>: Update multi_image example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10240/">PR #10240</a>: Pillow animation writer.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10279/">PR #10279</a>: Add ‘val’ attribute to slider doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10280/">PR #10280</a>: Update writing docs concerning explicit parameter lists</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10231/">PR #10231</a>: Support PathLike inputs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9952/">PR #9952</a>: Errorbars accept marker_options and follow prop_cycle</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10271/">PR #10271</a>: whats_new.rst: “C” must be capitalized in “CreationDate”</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9911/">PR #9911</a>: Make _get_rgba_face actually always return a RGBA.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10200/">PR #10200</a>: Catch normed warning in tests</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10219/">PR #10219</a>: Improve transform docstrings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10076/">PR #10076</a>: improve sub-second datetime plotting and documentation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/8512/">PR #8512</a>: DOC: add quickstart section to the gridspec tutorial</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10168/">PR #10168</a>: Minor update to multiprocessing example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10154/">PR #10154</a>: improve Axes.stem docstring</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10203/">PR #10203</a>: Update docs, in particular for backends.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9884/">PR #9884</a>: DOC: re-organize devel/documenting_mpl.rst</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10243/">PR #10243</a>: improve docstring of Axes.scatter</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10250/">PR #10250</a>: Minor refactor of backend_ps.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10261/">PR #10261</a>: Some comment typo fixes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10125/">PR #10125</a>: Cleanup animation examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10197/">PR #10197</a>: AFM fonts don’t have .postscript_name, but .get_fontname().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10263/">PR #10263</a>: FIX: (re-allow) legend OrderedDict handles and labels…</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10257/">PR #10257</a>: BLD: use correct method to get installation hints</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10259/">PR #10259</a>: Clean up example section titles</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10254/">PR #10254</a>: Quick and dirty revert of busy cursor for 2.1.2.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9570/">PR #9570</a>: Allow setting MATPLOTLIBRC by process substitution.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10247/">PR #10247</a>: Simplify _get_xdg_cache_dir in setupext.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10256/">PR #10256</a>: Remove reference to ignored rcParam, nbagg.transparent</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10133/">PR #10133</a>: FIX: Image scaling for large dynamic range ints</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10077/">PR #10077</a>: Use fuzzy comparison for stroke join determination.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10246/">PR #10246</a>: improve docstring of Axes.plot_date</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10233/">PR #10233</a>: Move unrendered docstrings to private attributes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10010/">PR #10010</a>: FIX: Check for fontsize smaller than 1 pt and round up</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10248/">PR #10248</a>: Minor cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9356/">PR #9356</a>: COMPAT: use tkagg backend on PyPy</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10188/">PR #10188</a>: Doc timer docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10232/">PR #10232</a>: Unify “blank space” and “white space” to “space”.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10138/">PR #10138</a>: Clean up _axes.py docstrings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10228/">PR #10228</a>: Add closing quotes to embedded python in rst markup.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10217/">PR #10217</a>: TST: Don’t use set -e.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10214/">PR #10214</a>: DOC: fix ‘’ markup for sphinx and py37</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10213/">PR #10213</a>: Add missing import to backend_tkagg.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9275/">PR #9275</a>: Tkagg fixes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10204/">PR #10204</a>: Cleanup backend_cairo.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10195/">PR #10195</a>: Wrap a few overly long lines.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10190/">PR #10190</a>: improve docstring of Axes.plot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10086/">PR #10086</a>: Deprecate support for “svg fonts” font embedding.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10119/">PR #10119</a>: Simplify gridspec.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10193/">PR #10193</a>: Handle Tick gridline properties like other Tick properties</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10182/">PR #10182</a>: improve docstrings for Axes.bar, Axes.barh, Axes.stackplot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10186/">PR #10186</a>: improve docstrings of Axes.fill_between and Axes.fill_betweenx</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10181/">PR #10181</a>: Cleanup texmanager.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10192/">PR #10192</a>: remove evt.Skip() from EVT_PAINT handler</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10191/">PR #10191</a>: Minor refactoring of docstring formatting in preprocess_data</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10196/">PR #10196</a>: Remove most instances of pep8 E502 (redundant backslashes).</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10139/">PR #10139</a>: Improve legend_handler docstrings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10198/">PR #10198</a>: Improve hist2d returns doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10146/">PR #10146</a>: Updated what’s new entry for color comparision method</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10184/">PR #10184</a>: Remove executable bit from example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10180/">PR #10180</a>: Rebase of #8504</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10178/">PR #10178</a>: Simplify pandas fixture.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10124/">PR #10124</a>: TST: centralize and standardize pandas imports</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10175/">PR #10175</a>: Agg: When a single Text uses usetex, don’t pass it through mathtext parser</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10166/">PR #10166</a>: Hide fully transparent text in PS output.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10150/">PR #10150</a>: Docstring updates for <code class="docutils literal notranslate"><span class="pre">Axes.fill</span></code> and <code class="docutils literal notranslate"><span class="pre">Axes.pie</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10172/">PR #10172</a>: Slight improvements to contour.py doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10159/">PR #10159</a>: improve Axes.broken_barh docstring</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10169/">PR #10169</a>: Make relim() take images into account too.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10171/">PR #10171</a>: Replace normed with density in examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10046/">PR #10046</a>: Add missing decode() in svg font embedding path.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9317/">PR #9317</a>: On 2.7, run tests on oldest documented supported pytest and pytest-cov.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10091/">PR #10091</a>: Replace “True | False” by “bool” in the docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10129/">PR #10129</a>: Fix multiple zero labels when using SymLogNorm</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10085/">PR #10085</a>: Move missing font message to debug level</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10155/">PR #10155</a>: Use keyword arguments for setp() in examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10152/">PR #10152</a>: DOC: update the datetime64 HowTo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9645/">PR #9645</a>: expose Path.contains_points as a method of Patch</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10093/">PR #10093</a>: Some docstring fixes and change a raise type</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10141/">PR #10141</a>: Zoom out to rectangle is not experimental anymore.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10087/">PR #10087</a>: Update docs on installing GUI toolkits in virtualenvs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10137/">PR #10137</a>: Remove gen rst</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10126/">PR #10126</a>: Move axisartist examples to their folder.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10131/">PR #10131</a>: cairo backends do not support blitting; mark them as such.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10134/">PR #10134</a>: Minor style cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10127/">PR #10127</a>: Use subplots() instead of axes_grid in suitable examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9938/">PR #9938</a>: Cleanup imports.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10116/">PR #10116</a>: Add simple image test for 3D tricontour and tricontourf</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10090/">PR #10090</a>: Minor simplification to _pylab_helpers.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10089/">PR #10089</a>: Deprecate passing strings instead of booleans to control tick state (and other states).</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9975/">PR #9975</a>: Remove some test warnings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10084/">PR #10084</a>: DOC: Better error when float on datetime axis</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10092/">PR #10092</a>: Minor cleanups to the cairo backend.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10120/">PR #10120</a>: Minor simplification to legend.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10101/">PR #10101</a>: Add origin as sticky point for radial axes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10104/">PR #10104</a>: Minor fixes to backend_template.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9619/">PR #9619</a>: FIX: non-existing variable</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10020/">PR #10020</a>: Let Container reprs report the actual subtype.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9959/">PR #9959</a>: DOC: Update color tutorial to explain alpha</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10094/">PR #10094</a>: replace six.next -> next (available since Py2.6).</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10103/">PR #10103</a>: Simplify Colormap.__call__.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10102/">PR #10102</a>: Remove list(zip(…)) when unnecessary.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10106/">PR #10106</a>: Clean up some widget docstrings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10108/">PR #10108</a>: Dedent docs in contributing.rst bullet/numbered lists.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10096/">PR #10096</a>: Logging and exception messages cleanup.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10095/">PR #10095</a>: Remove some debugging code.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10100/">PR #10100</a>: STY: fix line length</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9316/">PR #9316</a>: Removal of deprecated features for 2.2</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10098/">PR #10098</a>: Doc update: Explain what drawing a line does in RectangularSelector.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9997/">PR #9997</a>: Fix empty plot with drawstyle=”steps”</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10065/">PR #10065</a>: Add version to documentation header</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10028/">PR #10028</a>: Remove some deprecated rcParams.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10024/">PR #10024</a>: Deprecate nbagg.transparent rcParam.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10074/">PR #10074</a>: Prefer vendored qhull if sys-wide version can’t be determined.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10044/">PR #10044</a>: Remove some uses of unicode_literals</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10055/">PR #10055</a>: Documentation mistake in pyplot.py corrected</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10064/">PR #10064</a>: FIX: remove repeated label legend logic</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10052/">PR #10052</a>: Use consistent float-to-str formatting for tests with units</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10032/">PR #10032</a>: Add method for comparing two colors</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10030/">PR #10030</a>: Fix using .get_color() and friends in labels handling</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10031/">PR #10031</a>: Fix legend color comparisions</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10021/">PR #10021</a>: Cleanup issue template.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10026/">PR #10026</a>: Fix scatter docstring markup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10043/">PR #10043</a>: Update FreeType hashes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10027/">PR #10027</a>: Improve errorbar returns doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10019/">PR #10019</a>: TST: test mlab cohere</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10025/">PR #10025</a>: Remove badges from website sidebar</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10000/">PR #10000</a>: Fix figure.colorbar() with axes keywords</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9999/">PR #9999</a>: improve legend docstring</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9514/">PR #9514</a>: Convert index.html and citing.html to rst.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10006/">PR #10006</a>: add mpl-template and plotnine to 3rd party doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/7945/">PR #7945</a>: fix StixSans mapping bug</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10014/">PR #10014</a>: FIX: pass nonposx/y args through loglog etc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10004/">PR #10004</a>: Fixed critical typo in mlab.cohere</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9989/">PR #9989</a>: FIX: clabel manual spacing was incorrect</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9998/">PR #9998</a>: Fix scatter_piecharts example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9956/">PR #9956</a>: BUG: clear events before destroying windows in tkagg</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9949/">PR #9949</a>: fix docstring in ToolManager</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9641/">PR #9641</a>: Implement Qt4 backend by fully reexporting Qt5 backend.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9932/">PR #9932</a>: Support pgi as alternative gobject bindings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9986/">PR #9986</a>: Remove unused import in toolmanager example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9968/">PR #9968</a>: Deprecate pyplot.axes with an Axes argument</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9962/">PR #9962</a>: toolbar checkbutton fix bug in tkinter python3.6</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9981/">PR #9981</a>: DOC: Add alpha compositing note to “matplotlib.pyplot.imshow” definition.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9969/">PR #9969</a>: Numpydoc conversion and clarification of some AxesBase docstrings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9946/">PR #9946</a>: Clean up legend docstrings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9951/">PR #9951</a>: Improve documentation on Axes position</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9964/">PR #9964</a>: Update Axes docs on aspect-related methods</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9385/">PR #9385</a>: Bump test coverage of Qt5 UI.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9958/">PR #9958</a>: FIX: put Nav Home view back inside pan/zoom</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9945/">PR #9945</a>: Only label vertical lines in acorr</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9930/">PR #9930</a>: Cleanup pyplot.axes()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9942/">PR #9942</a>: Minor doc formatting cleanups in pyplot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9933/">PR #9933</a>: Fix Rectange.get_bbox()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9929/">PR #9929</a>: In tests, remove unused imports and sort some remaining imports.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9928/">PR #9928</a>: Cleanup delaxes()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9750/">PR #9750</a>: Use command keys for window shortcuts in Qt on OSX</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9072/">PR #9072</a>: Use left/right top/bottom instead of width/height in Rectangle</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9917/">PR #9917</a>: Unify (parametrize) test_composite across backends.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9919/">PR #9919</a>: In unit/memleak, write to in-memory buffer instead of file.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9916/">PR #9916</a>: backend_agg cleanup.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9915/">PR #9915</a>: Deprecate unused FigureManagerBase.show_popup.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9825/">PR #9825</a>: Deprecate Artist.onRemove, Artist.hitlist.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9513/">PR #9513</a>: Switch to makefile-based doc build.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9865/">PR #9865</a>: less_simple_linear_interpolation can be replaced by np.interp.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9904/">PR #9904</a>: Deprecate unused ContourLabeler.get_real_label_width.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9881/">PR #9881</a>: Polar tick fixes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9028/">PR #9028</a>: Modified rrulewraper to handle timezone-aware datetimes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9900/">PR #9900</a>: DOC: Updates multiprocessing example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9907/">PR #9907</a>: DOC: (subjectively) nicer annotated barchart example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9448/">PR #9448</a>: Fix instance of ‘RendererPS’ has no ‘tex’ member</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9899/">PR #9899</a>: make SubplotTool into a modal dialog, keep ref to SubplotTool</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9889/">PR #9889</a>: Deprecate ‘normed’ kwarg to hist</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9421/">PR #9421</a>: Improve reprs of transforms.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9897/">PR #9897</a>: changed line to ‘alias for set_multialignment’</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9875/">PR #9875</a>: Additions to the documentation guide</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9878/">PR #9878</a>: TST: Lock pytest to 3.2.5 until 3.3.1 released</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9805/">PR #9805</a>: Update documentation guide</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9836/">PR #9836</a>: ENH/MacOS Allow shift modifiers to key events</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9860/">PR #9860</a>: Vectorize and document simple_linear_interpolation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9869/">PR #9869</a>: Clean tmpdir at exit.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9781/">PR #9781</a>: Convert LineCollection docstring to numpydoc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9862/">PR #9862</a>: PRF: Don’t used MaskedArray in Aitoff transform.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9854/">PR #9854</a>: Exclude dviread.Text from the documentation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9861/">PR #9861</a>: Remove some unused imports; reword/remarkup some docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9857/">PR #9857</a>: documentation: fix url for pillow</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9811/">PR #9811</a>: dynamically finding the backend preferred format for button images</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9841/">PR #9841</a>: ENH: make interval_multiples work for years</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9826/">PR #9826</a>: Deprecate column cycling when plot() inputs have nonmatching shapes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9852/">PR #9852</a>: Simplify the pyplot animation demo.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9853/">PR #9853</a>: Move image_slices_viewer example from animation to event_handling.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9848/">PR #9848</a>: Fix typo in axis api doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9846/">PR #9846</a>: Move enumeration of text tutorial into table.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9827/">PR #9827</a>: DOC: add more tutorial to text/text_intro</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9773/">PR #9773</a>: MNT: Make sure AppVeyor fails if tests fail</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9806/">PR #9806</a>: Remove call to nonexistent FT2Font.get_fontsize.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9816/">PR #9816</a>: ENH: add pad kwarg to set_title</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9817/">PR #9817</a>: API: do not truncate svg size to integer points</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9599/">PR #9599</a>: Unify the three Qt5 embedding examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9803/">PR #9803</a>: Add links to python’s strftime method</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9807/">PR #9807</a>: Simplify test_tinypages.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9790/">PR #9790</a>: Link GridSpec docs to SubplotParams paramter descriptions</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9311/">PR #9311</a>: Update docs on docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9794/">PR #9794</a>: DOC: for datetime64 support</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9779/">PR #9779</a>: ENH: support np.datenum64 in dates.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9654/">PR #9654</a>: Correctly convert units for a stacked histogram</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9670/">PR #9670</a>: Make tick_left/right keep labels off if they are already off</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9723/">PR #9723</a>: ENH: Catch masked array and invalid x, y to pcolormesh</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9766/">PR #9766</a>: Fix mixed_subplots example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9255/">PR #9255</a>: New color blind-friendly color cycle</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9756/">PR #9756</a>: DOC removing pyplot_annotate.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9759/">PR #9759</a>: blocking_input: Fix “manager” attr check</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9313/">PR #9313</a>: [MRG] Replace verbose class with standard logging library</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9743/">PR #9743</a>: FIX: check if contour level in format dictionary, or return a default</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9753/">PR #9753</a>: FIX: Detrending before windowing _spectral_helper</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9752/">PR #9752</a>: DOC: example demo_parasite_axes2.py broken on 2.1.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9587/">PR #9587</a>: Remove unused example with no plot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9715/">PR #9715</a>: Change set_figwidth/height to be consistent w/ set_size_inches</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9657/">PR #9657</a>: Add API note about MovieWriterRegistry exception</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9748/">PR #9748</a>: Reword subplot() doc.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9379/">PR #9379</a>: ENH: Added __repr__ for Figure</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9724/">PR #9724</a>: Fix PDFpages bug</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9726/">PR #9726</a>: FIX/TST: update tests for pandas 0.21</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9677/">PR #9677</a>: Rely more on lru_cache rather than custom caching.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9698/">PR #9698</a>: Set widget background color to white.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9733/">PR #9733</a>: Allow _BackendNbAgg.show() to take keyword “block”</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9732/">PR #9732</a>: Added mention of WCSAxes in the third-party packages page</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9711/">PR #9711</a>: Minor markup fix.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9718/">PR #9718</a>: Revert “Axes.__init__ speedup”</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/8626/">PR #8626</a>: Axes.__init__ speedup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9662/">PR #9662</a>: Fix crash when restarting OSX single shot timer</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9461/">PR #9461</a>: Property tables</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9684/">PR #9684</a>: Make some more of figure.py numpydoc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9703/">PR #9703</a>: Deprecate Artist.is_figure_set.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9697/">PR #9697</a>: Raise minimum WX version to 2.9.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9705/">PR #9705</a>: Fix scatterplot categorical support</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9687/">PR #9687</a>: Fix callbackregistry docstring.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9689/">PR #9689</a>: Updates to font-related examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9690/">PR #9690</a>: Move example in wrong folder</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9678/">PR #9678</a>: Remove a few unnecessary global statements.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9685/">PR #9685</a>: Trivial aliases.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9566/">PR #9566</a>: Update API examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9680/">PR #9680</a>: Actually install the deps on Appveyor.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9481/">PR #9481</a>: Apply hinting factor rcParam in all cases.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9676/">PR #9676</a>: FIX: Catch IOError on font-cache write</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9673/">PR #9673</a>: On CI, just let pip resolve most dependencies.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9649/">PR #9649</a>: Reoder Axes API docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9658/">PR #9658</a>: Pin pandas on appveyor too</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9665/">PR #9665</a>: Update agg_oo_sgskip.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9661/">PR #9661</a>: Fix arcs with very large width/height.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9510/">PR #9510</a>: BLD: Fix some bugs in <code class="docutils literal notranslate"><span class="pre">setupext.py</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9646/">PR #9646</a>: Convert dviread to use lru_cache.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9648/">PR #9648</a>: Correct https git URIs in documentation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9614/">PR #9614</a>: Added an entry for mpl-scatter-density in the third-party tools page</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9640/">PR #9640</a>: Remove unused global cmd_split variable.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9532/">PR #9532</a>: Further improve colormap discussion.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9324/">PR #9324</a>: [MRG] Allow kwarg handles and labels figure.legend and make doc for kwargs the same</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9643/">PR #9643</a>: More helpful error if requested MovieWriter not available</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9359/">PR #9359</a>: Keep track of axes in interactive navigation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9389/">PR #9389</a>: Assign event to later Axes if zorders are tied.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9612/">PR #9612</a>: Only set view/data intervals if axis is set in AutoDateLocator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9627/">PR #9627</a>: Move old logo to history page.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9624/">PR #9624</a>: DOC: move whats_new entry to next_whats_new folder</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9625/">PR #9625</a>: STY: remove trailing whitespace</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9600/">PR #9600</a>: Fix some widget docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9617/">PR #9617</a>: Pin pandas<0.21 to unbreak the build.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9515/">PR #9515</a>: Attribute users/intro to JDH and rename to history.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9615/">PR #9615</a>: Do not hardcode fill=False in mark_inset</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9262/">PR #9262</a>: Minor doc markup fixes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9603/">PR #9603</a>: Fix xkcd() not resetting context anymore.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9604/">PR #9604</a>: Gridspec doc fixes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9008/">PR #9008</a>: adding webagg.address parameter to rcParams</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9519/">PR #9519</a>: Increase patch test coverage</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9497/">PR #9497</a>: Test simplifications.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9536/">PR #9536</a>: Simplify declaration of install_requires.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9601/">PR #9601</a>: Fix PEP8 in stackplot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9595/">PR #9595</a>: Convert stackplot docstring to numpydoc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9589/">PR #9589</a>: Fix typo in isinstance</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9523/">PR #9523</a>: Add capstyle and joinstyle attributes to Collection class (Issue #8277)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9584/">PR #9584</a>: Add returns documentation to fill_between methods</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9575/">PR #9575</a>: Add some legend handler documentation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9477/">PR #9477</a>: In LogTransform, clip after log, not before.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9568/">PR #9568</a>: Add a proper docstring to AutoLocator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9569/">PR #9569</a>: Docstring fix.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9564/">PR #9564</a>: TST: add test of normed histogram with unequal bins</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9552/">PR #9552</a>: animation: Remove examples keyword</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9555/">PR #9555</a>: MRG: expand docstring for <code class="docutils literal notranslate"><span class="pre">hist</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9469/">PR #9469</a>: FIX: PyQt versions where showing the Qt versions</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9549/">PR #9549</a>: Fix stale draws on MacOSX backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9544/">PR #9544</a>: adding links to color examples and tutorials in the api page</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9540/">PR #9540</a>: DOC fix set_xticklabels docstring</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9442/">PR #9442</a>: BUG: Fix <code class="docutils literal notranslate"><span class="pre">_extent</span></code> not set in PcolorImage</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9363/">PR #9363</a>: Allow invalid limits when panning</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9292/">PR #9292</a>: Fix TypeError: a bytes-like object is required, not ‘str’</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9530/">PR #9530</a>: DOC Added the colormap references back</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9517/">PR #9517</a>: Convert slider docstrings to numpydoc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9516/">PR #9516</a>: Make colorbar docstring numpydoc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9504/">PR #9504</a>: Truncate windows registry entries after null byte.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9484/">PR #9484</a>: Force installation of wx from whl, not from pypi.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9300/">PR #9300</a>: Simplify mpl.testing._copy_metadata.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9508/">PR #9508</a>: CI: do not run pushes to the auto-backport branches</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9506/">PR #9506</a>: fix typo in rst markup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/7739/">PR #7739</a>: WIP: Fix artifact upload</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9396/">PR #9396</a>: Fix minor bug in vertex insert</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9478/">PR #9478</a>: Added description to widget example programs except Cursor and Menu</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9164/">PR #9164</a>: include overspilling axes legends in ax.get_tightbbox</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9495/">PR #9495</a>: Macosx fixes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9465/">PR #9465</a>: Avoid dividing by zero in AutoMinorLocator (fixes #8804)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9425/">PR #9425</a>: Minor fixes to plot_directive.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9486/">PR #9486</a>: Don’t leak test.jpeg into cwd while testing.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9490/">PR #9490</a>: No need to fake sets with dicts anymore.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9487/">PR #9487</a>: Improve test_backend_svg.test_determinism.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9483/">PR #9483</a>: DOC Demote container headings one level Artist tutorial (minor)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9447/">PR #9447</a>: Update examples for axisgrid1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9121/">PR #9121</a>: Remove old normalising code from plt.hist</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9293/">PR #9293</a>: minor (unrelated) cleanups</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9459/">PR #9459</a>: Modified restrictions on <code class="docutils literal notranslate"><span class="pre">margins</span></code> method</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9473/">PR #9473</a>: Changes to better highlight development-workflow in docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9423/">PR #9423</a>: Mark the interactive backend test as flaky.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9476/">PR #9476</a>: Get rid of a few unnecessary line continuations in strings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9435/">PR #9435</a>: Shadow patch now initializes zorder behind argument patch</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9472/">PR #9472</a>: documentation fix regarding contour and tricontour (#9088)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9456/">PR #9456</a>: Documented the incompatibility of shrink and cax kwargs in colorbar.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9378/">PR #9378</a>: DOC: fill out dev docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9464/">PR #9464</a>: Fix multiple unreferenced local variable warnings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9463/">PR #9463</a>: DOC: Re-enable next what’s new entries.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9451/">PR #9451</a>: custom legends example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9137/">PR #9137</a>: Adds option for Slider to snap to discrete values</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9441/">PR #9441</a>: STY: fix bad indentation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9449/">PR #9449</a>: TST: Enable xdist on Appveyor</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9444/">PR #9444</a>: STY: Remove explicit return in __init__</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9452/">PR #9452</a>: FIX: Always update tick labels (fixes #9397)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9438/">PR #9438</a>: Remove unused variable ‘sign’</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9418/">PR #9418</a>: TST: Disable faulthandler on Windows if CPython 3.6-3.6.3</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9440/">PR #9440</a>: Remove reimport of modules</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9439/">PR #9439</a>: Fix undefined variable ‘warnings’</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9437/">PR #9437</a>: Fix Undefined variable ‘symbol’</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9424/">PR #9424</a>: Minor fixes to gallery build.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9432/">PR #9432</a>: Correct minor typo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9420/">PR #9420</a>: Trivial doc fixes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9427/">PR #9427</a>: Fix NameError: name ‘exc’ is not defined</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9428/">PR #9428</a>: Fix NameError: name ‘ArgumentError’ is not defined</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9409/">PR #9409</a>: TST: Fix flaky tests order</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9408/">PR #9408</a>: updating color cycle tutorial</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9415/">PR #9415</a>: Import time module so that pyplot.pause works</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9410/">PR #9410</a>: BUG: Fix savefig GUI in GTK backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9254/">PR #9254</a>: imshow transparency blend example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9403/">PR #9403</a>: MAINT Documentation on doc is outdated</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9367/">PR #9367</a>: Tell user to try installing pkg-config if packages not found</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9383/">PR #9383</a>: Increase axes test coverage</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9401/">PR #9401</a>: FIX scipy is not a requirement</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9392/">PR #9392</a>: Add examples for subplots_axes_and_figures</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9394/">PR #9394</a>: [Doc] Add pcolor, contour, imshow to and other small changes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9395/">PR #9395</a>: TST: Unblock Appveyor build by patching <code class="docutils literal notranslate"><span class="pre">subprocess</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9347/">PR #9347</a>: Fix backend refactor</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9365/">PR #9365</a>: If PIL.image is missing, tell user to install pillow</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9381/">PR #9381</a>: Add tutorials to the Users Guide.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9343/">PR #9343</a>: Fix broken link to proxy artists documentation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9368/">PR #9368</a>: Add link to Matplotlib paper on citing page</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9375/">PR #9375</a>: Document get_{x,y}axis_transform more prominently.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9376/">PR #9376</a>: Fix docstring typo in Rectangle, Ellipse, and Spine.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9353/">PR #9353</a>: Fix edgecolor being only applied to first bar.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9335/">PR #9335</a>: Fix poorly done deprecations in image.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9341/">PR #9341</a>: Update descriptions for images_contours_and_fields</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9342/">PR #9342</a>: Fix typo of pixels in legend_handler.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9333/">PR #9333</a>: Add descriptions for remaining event handling examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9279/">PR #9279</a>: Update doc strings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9242/">PR #9242</a>: Errorbar bugfix</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9323/">PR #9323</a>: Axis user guide</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9328/">PR #9328</a>: Fix NameError: name ‘os’ is not defined</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9309/">PR #9309</a>: DOC: Update docstring to numpy format for last few functions in transforms</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9291/">PR #9291</a>: Doc updates</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9299/">PR #9299</a>: Restore better error message on std::runtime_error.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9295/">PR #9295</a>: In text, warn and return instead of raise exception for non-finite x, y</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9303/">PR #9303</a>: Don’t use pytest.filterwarings, which needs pytest>=3.2.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9289/">PR #9289</a>: Throw std::runtime_exception instead of char*.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9268/">PR #9268</a>: Fix documents of semilogx and semilogy.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9286/">PR #9286</a>: Ask Appveyor to ignore certain branches.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9277/">PR #9277</a>: plot_surface docstring + edge case fix</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9278/">PR #9278</a>: Remove scatter_profile example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9272/">PR #9272</a>: Include the default of “plot_pre_code” of the plot directive in the documentation</li>
</ul>
<p>Issues (315):</p>
<ul class="simple">
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10174/">#10174</a>: Rendering problems with FigureCanvasWxAgg on OSX</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9035/">#9035</a>: savefig does put the correct dpi in the metadata of jpeg</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5750/">#5750</a>: whish for 2016: matplotlib can use only Pillow 3.0+ to create animated GIF</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9717/">#9717</a>: gtk3agg not working with python 3.6.3 & cairocffi 1.10.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/6973/">#6973</a>: Running pytest against non develop install fails</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/6836/">#6836</a>: DOC: missing second y-axis in <code class="docutils literal notranslate"><span class="pre">demo_parasite_axes2</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5428/">#5428</a>: Change <code class="docutils literal notranslate"><span class="pre">setup.py</span> <span class="pre">install</span></code> recommendation to <code class="docutils literal notranslate"><span class="pre">pip</span> <span class="pre">install</span> <span class="pre">.</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/4978/">#4978</a>: Use higher-resolution icons on HiDPI-friendly backends</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/4907/">#4907</a>: mpl_toolkits not installed with <code class="docutils literal notranslate"><span class="pre">pip</span> <span class="pre">install</span> <span class="pre">-e</span> <span class="pre">.</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/3446/">#3446</a>: Add note about CHM security issues</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/3267/">#3267</a>: Why does rec2csv ignore float precision?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10343/">#10343</a>: Missing keys in matplotlibrc.template to move x-axis labels to top</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10267/">#10267</a>: matplotlibrc: new entry for placing y-axis tick label on Right or Left hand side.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10384/">#10384</a>: maybe bugs in ax.annotate when get bbox coordinates(matplot-2.1.0)?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/7155/">#7155</a>: use categorical in demos</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/6802/">#6802</a>: Discrete scatter?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9974/">#9974</a>: toolbar.update() breaks history</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10373/">#10373</a>: cannot import matplotlib.pyplot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10368/">#10368</a>: constrained layout uneven gridspec layouts…</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5382/">#5382</a>: imsave and imshow ignore vmin/vmax</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9391/">#9391</a>: imshow doesn’t normalize the color range in RGB images</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10372/">#10372</a>: Floating point image RGB values must be in the 0..1 range</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10349/">#10349</a>: Rectangle patch added to a datetime x-axis is plotted with the wrong width</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10344/">#10344</a>: matplotlib can not handle pandas dataframe correctly when the label of the columns/index is strings but the actual data are float.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8308/">#8308</a>: Too many open files: ‘/usr/lib/python3.6/site-packages/matplotlib/backends/web_backend/mpl.js’</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10341/">#10341</a>: syntax error without a space</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10338/">#10338</a>: line.set_drawstyle fails to produce step-like line</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8852/">#8852</a>: Rolling image if the FFMpegWriter dpi setting does not match that specified when a figure is created</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10287/">#10287</a>: _tkinter.TclError: can’t invoke “wm” command: application has been destroyed</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/7640/">#7640</a>: Some properties are set lazily and behaved inconsistently</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/4346/">#4346</a>: Tick label padding on first y-axis changes when adding a second y-axis</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5560/">#5560</a>: Secondary_y axis default limit (top) & bound (upper) not matching ticks</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8823/">#8823</a>: colorbar might shrink plots if used with twinx</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10318/">#10318</a>: Matplotlib Sample Outdated?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8736/">#8736</a>: Figure resize when saving a plot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10216/">#10216</a>: TST: gdb has been removed from Travis</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10290/">#10290</a>: Figure rotation using Axes.text () with eps backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10300/">#10300</a>: How to use triplot to make a multi-color line of the triangular</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8820/">#8820</a>: Regression with numpy ~~1.13~~ 1.14 for colorbars of boolean data</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5968/">#5968</a>: Accepting pathlib.Path as path inputs?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10285/">#10285</a>: Picture in online documentation for multi_image.py is cut off at bottom</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10229/">#10229</a>: ENH: Add imageio as an option for saving animated gifs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10288/">#10288</a>: issue with version of six</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10151/">#10151</a>: Question on docstring and signature of Axes.stem()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10073/">#10073</a>: datetime and sub-second resolution plotting</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10277/">#10277</a>: error import matplotlib.pyplot as plt</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10265/">#10265</a>: ENH tripcolor with explicit RGB colors</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10262/">#10262</a>: OrderedDict legends no longer work 2.1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10162/">#10162</a>: Increase of Computation time from 2.1.0 to 2.1.1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/6884/">#6884</a>: MPLRC environment variable to set rcparams</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10252/">#10252</a>: Can’t Import Matplotlib.pyplot - Anaconda 4.4, Python 3.6 & Windows 10</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10072/">#10072</a>: imshow doesn’t properly display some images</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/7797/">#7797</a>: Quiver barb size not correct on some arches (ppc64, ppc64le…)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5873/">#5873</a>: Useless Dvi dispatch docs in dvi_read api docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10251/">#10251</a>: I have determined a color for each data point pragmatically and I have 11 set of x(time) and y(subjects) and I want to make plots for these values(x values) and these colors will be used for the data points on the plots.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5568/">#5568</a>: Latin Modern support?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5208/">#5208</a>: MathTex Font error</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5250/">#5250</a>: Font-weight range seems wrong</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/3531/">#3531</a>: sundry documentation issues</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/6716/">#6716</a>: <code class="docutils literal notranslate"><span class="pre">cleanup</span></code> decorator implemented in an obfuscated way</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9160/">#9160</a>: blank space vs. white space</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/524/">#524</a>: improving mpl docs and accessibility for API users</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/4313/">#4313</a>: Document installation with pip for Python3</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/6626/">#6626</a>: Error in example <a class="reference external" href="http://matplotlib.org/examples/misc/multiprocess.html">http://matplotlib.org/examples/misc/multiprocess.html</a></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8152/">#8152</a>: test_fontconfig_fonts error on Linux wheel testing</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/7917/">#7917</a>: Docstring of EventCollection cuts mid-sentence.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9906/">#9906</a>: Incorrect alpha compositing using “matplotlib.pyplot.imshow”.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10069/">#10069</a>: Add what’s new entry for new color comparision method</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10221/">#10221</a>: savefig() does not support PosixPath object for file name</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10205/">#10205</a>: matplotlib.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9040/">#9040</a>: ‘Figure’ object has no attribute ‘_original_dpi’</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5703/">#5703</a>: Python 2.6 string format syntax errors in matplotlib 1.4.3</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10163/">#10163</a>: savefig with eps draws a hidden axis</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/2508/">#2508</a>: Relim not working correctly with images</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10140/">#10140</a>: Qt5Agg eats 100% CPU when plotting with block=True in interactive mode</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10122/">#10122</a>: Color bar has multiple labels for 0 if matplotlib.colors.SymLogNorm is used</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10130/">#10130</a>: Bar plot does not work</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10135/">#10135</a>: matplotlib installation from source and numpy incompatibility</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10123/">#10123</a>: memory leak with histograms</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9887/">#9887</a>: polar limits not snapping to 0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9429/">#9429</a>: Undefined name <code class="docutils literal notranslate"><span class="pre">baseline</span></code>?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8547/">#8547</a>: Allow scalar <code class="docutils literal notranslate"><span class="pre">weights</span></code> parameter to <code class="docutils literal notranslate"><span class="pre">hist</span></code> method</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10115/">#10115</a>: pcolor vs pcolorfast: unexpected white edgecolors using RGBA-alike colormaps</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9200/">#9200</a>: Documentation: File doc/users/whats_new/README does not exist</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10078/">#10078</a>: updating to release 2.1.1 causes pip to stop working</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9597/">#9597</a>: Plot with <code class="docutils literal notranslate"><span class="pre">drawstyle="steps"</span></code> fails if x and y are empty</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8872/">#8872</a>: Build errors with existing qhull</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8390/">#8390</a>: Can’t install matplotlib from source due to recent addition of QHULL_LIB_CHECK to src/qhull_wrap.c</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10053/">#10053</a>: Duplicate legend labels with different colors can often result in an error.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10056/">#10056</a>: Only one legend entry is rendered for items with the same label and color</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10037/">#10037</a>: Documentation mistake in the pyplot introductory tutorial</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9973/">#9973</a>: Slightly misleading errorbar docs that interferes with attempt to animate errorbar</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10012/">#10012</a>: TST: <code class="docutils literal notranslate"><span class="pre">mlab.cohere</span></code> needs a test</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9996/">#9996</a>: Remove badges from website side bar</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8493/">#8493</a>: Colorbar documentation: <code class="docutils literal notranslate"><span class="pre">anchor</span></code> not recognized as possible argument to plt.colorbar</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8668/">#8668</a>: handles keyword argument not documented in the help of legend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10015/">#10015</a>: TKWindow unrecognized selector error</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5507/">#5507</a>: DLL load failed: cannot find specified procedure when importing matplotlib.pyplot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/7939/">#7939</a>: Mathtext.py glyph mapping fails for StixFonts (UnicodeFonts subclass)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/4167/">#4167</a>: No SVG/PDF export when useing latex package cmbrigth</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/4109/">#4109</a>: WXAgg embedded navigation zoom, home, back not working</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/3848/">#3848</a>: PGF Backend with LuaLaTeX: Permission denied error</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10007/">#10007</a>: nonposx and nonposy</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9940/">#9940</a>: Deprecate Axes as a valid pyplot.axes() argument type</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10005/">#10005</a>: matplotlib.pyplot.figlegend not working with Patches</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/10003/">#10003</a>: Typo in mlab.cohere</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9988/">#9988</a>: Contours are not removed correctly when using clabel with manual</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9185/">#9185</a>: Problem in Scatter-Piecharts example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9856/">#9856</a>: Python crashes when closing figures using TkAgg on Mac OS</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9977/">#9977</a>: Error shows when I import matplotlib after installation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9935/">#9935</a>: QT5 AttributeError pixelDelta</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9943/">#9943</a>: toolmanager_sgskip + tkagg example couples “GroupHide” toggle with Pan and (second) Zoom</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8347/">#8347</a>: font_manager.py Bug</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/4575/">#4575</a>: nbagg canvas size</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9983/">#9983</a>: ImportError: ZLIB_1.2.9 not found</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9982/">#9982</a>: <code class="docutils literal notranslate"><span class="pre">``</span></code>’module’ object has no attribute ‘subplots’<code class="docutils literal notranslate"><span class="pre">``</span></code> when importing with <code class="docutils literal notranslate"><span class="pre">````__import__````</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9954/">#9954</a>: import matplotlib.pyplot as plt, ImportError: libGL.so.1: cannot open shared object file: No such file or directory</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9980/">#9980</a>: Cannot update to MPL v2.1.1 on Anaconda</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/7502/">#7502</a>: Rely on Sphinx’ “any” role to make docstrings more legible</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9976/">#9976</a>: ax.set_aspect triggers useless warnings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9965/">#9965</a>: subplots ignores figsize argument</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9863/">#9863</a>: Y-axis value of a seaborn heatmap is reversed when home icon or H button is pushed</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9944/">#9944</a>: Acorr() creates two labels</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9939/">#9939</a>: Matplotlib scatterplot does not work with pandas timestamp/datetime format</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/2140/">#2140</a>: Make Cmd-W close the window using QT4 on OS X</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/4916/">#4916</a>: Cannot use a timedelta Rectangle width with a datetime axis</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5798/">#5798</a>: Use Makefile for sphinx build</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9739/">#9739</a>: doc inconsistency: definition of “aspect”</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9018/">#9018</a>: DayLocator is returning incorrect times around daylights switch over</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/7388/">#7388</a>: Example examples/misc/multiprocess.py may not be python3 compatible?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9898/">#9898</a>: using <code class="docutils literal notranslate"><span class="pre">xs=...,</span> <span class="pre">ys=...</span></code> on ax.scatter 2D raises error</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9864/">#9864</a>: Missing <code class="docutils literal notranslate"><span class="pre">normed</span></code> parameter description in matplotlib.pyplot.hist</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9896/">#9896</a>: Simple documentation typo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9895/">#9895</a>: Sequential colormaps doesn’t reach 100 lightness (pure white)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9893/">#9893</a>: Bug with setting minor tick marks on plots</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9890/">#9890</a>: how to autoscale y axis in different [x1,x2] range?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9835/">#9835</a>: Shift+Arrow key events not detected in osx backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9879/">#9879</a>: Usage FAQ section missing in 2.1.0 documentation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9786/">#9786</a>: Consistent Documentation Guide for Docstrings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/2259/">#2259</a>: dates.date2num no longer works with numpy.datetime64</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9868/">#9868</a>: Infinite number of /tmp/matplotlib-* dirs on machine without HOME env variable</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8039/">#8039</a>: “savefig” bug with unicode characters (version 2.0.0)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9834/">#9834</a>: console gets stuck when creating figure</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9866/">#9866</a>: ValueError: ordinal must be >= 1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9130/">#9130</a>: axes.get_tightbbox doesn’t include legends…</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9302/">#9302</a>: ENH: Switch from verbose to logging for warnings and logging</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9531/">#9531</a>: Improve Colormap example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9838/">#9838</a>: YearLocator should prefer ticks at the turn of the decade</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9784/">#9784</a>: plot(2D, 2D) will cycle through the input columns even with non-matching shapes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9719/">#9719</a>: Appveyor passing, even when tests are failing</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9849/">#9849</a>: Crash when scroll on figure</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/1257/">#1257</a>: Support for hierarchical labeling of bar-plots</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9833/">#9833</a>: Visibility of pane edges in 3d figures</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9840/">#9840</a>: quiver angles array UnboundLocalError: local variable ‘lengths’ referenced before assignment</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9828/">#9828</a>: Can’t pickle plots with date axes (from pandas)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9823/">#9823</a>: Missing __init__.py file in mpl_toolkits</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9822/">#9822</a>: Cloud any one experience the below error while installing ‘pyplot’ package</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9788/">#9788</a>: font_manager calls nonexistent method FT2Font.get_fontsize</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9436/">#9436</a>: Instance of ‘TextBox’ has no ‘observers’ member?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9820/">#9820</a>: Borders appear only for the first bar in the bar plot.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9744/">#9744</a>: <em>frac</em> in set_thetagrids() doesn’t work</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9819/">#9819</a>: Multi-page PDF file size jumps since 2.0.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9818/">#9818</a>: edgecolor arg set to scalar applies to the first bar in bar() method</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9610/">#9610</a>: provide converters for datetime64 types</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9815/">#9815</a>: svg backend truncates output size to integer, which it doesn’t need to (and pdf backend doesn’t)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9785/">#9785</a>: <code class="docutils literal notranslate"><span class="pre">zorder=None</span></code> not properly handled</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9735/">#9735</a>: 2.1.0 sdist does not allow building docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9809/">#9809</a>: legend() fails when data set with empty error bars has been plotted</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9808/">#9808</a>: inconsistent hatch and border color in barh in matplotlib 2.1.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/7200/">#7200</a>: Default locator for log-scale messes up minor ticks sometimes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9798/">#9798</a>: PdfPages and PdfFile closing error</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5541/">#5541</a>: errorbar of (x,y) data on semilogx plot with NaN in x throws ValueError if errorbar() command initializes the axes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9791/">#9791</a>: Contour plot doesn’t show if setting “manual=True” in plt.clabel()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9780/">#9780</a>: Dotted grid lines have different individual dot sizes in pdf files</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5898/">#5898</a>: Error on datetime data in stacked histogram plot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8982/">#8982</a>: Backend MacOSX keyboard not working</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9771/">#9771</a>: Error in matplotlib with datetime64 with pandas 0.21.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9256/">#9256</a>: reading truncated png can segfault python</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9664/">#9664</a>: Change in behavior of axis.tick_left() with shared axes from 2.0 to 2.1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9358/">#9358</a>: zoom/pan stack bug in 2.1.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9720/">#9720</a>: plt.pcolormesh stopped working with Masked Arrays</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/1668/">#1668</a>: Support .otf fonts</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9758/">#9758</a>: plt.ginput broken on 2.1.0: plot does not appear</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/2203/">#2203</a>: Allow negative radial grid values in polar.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/6026/">#6026</a>: bad behaviour on DateFormatter on y-axis –> polar vs normal plot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9742/">#9742</a>: clabel raises KeyError with level on boundary since matplotlib 2.1.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9669/">#9669</a>: Make forward=True default consistent across size changing methods</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9751/">#9751</a>: inconsistency in the algorithm for calculating cross spectral densities</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5837/">#5837</a>: Cannot start tkinter-based example on Python 3.5.1 using Mac Homebrew for Python and Tk</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/2422/">#2422</a>: PDF backend on OS X 10.8 creates PDFs that are viewable in Adobe Reader, but not in Preview or QuickLook</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9740/">#9740</a>: doc infelicities on subaxes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9651/">#9651</a>: “block” keyword unrecognized in 2.1 in notebook backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9716/">#9716</a>: Large size of plots saved as pdf</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9741/">#9741</a>: Missing arguments in call to exception_handler</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9729/">#9729</a>: plt.pause() with notebook backend causes error</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8122/">#8122</a>: keyword labelrotation is not recognized</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9655/">#9655</a>: Segmentation fault when starting a timer a second time (MacOS X backend)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9699/">#9699</a>: IndexError thrown by pyplot.legend()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9494/">#9494</a>: Categorical not hitting update path on fill_between</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9700/">#9700</a>: Subsequent calls to plt.scatter with different categories raise ValueError</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9702/">#9702</a>: Broken pdf export when using genuine TeX (Missing encode)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9701/">#9701</a>: Bars are not visible in bar plot when log scale is enabled</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9688/">#9688</a>: ValueError: Invalid RGBA argument: nan</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9548/">#9548</a>: failure on import due to IOError writing font cache</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9674/">#9674</a>: is FigureCanvas<Backend>.blit(… bbox=box) ever used?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9671/">#9671</a>: Style configuration changing behavior of savefig</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9663/">#9663</a>: Spelling error in gallery (agg_oo_sgskip.html)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9659/">#9659</a>: patches.Arc objects randomly drawing the full ellipse</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9380/">#9380</a>: Cannot import pyplot. NameError: ‘FigureManagerWebAgg’ is not defined</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/3476/">#3476</a>: File save dialog output goes to python terminal on OS X</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8623/">#8623</a>: fill_between incorrect with log y-axis and value 0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/4450/">#4450</a>: shared axes switch to log scale</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9320/">#9320</a>: 2.1 figure.legend broken</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9635/">#9635</a>: matplotlib spline adjustment changes tick label visibility</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9388/">#9388</a>: Mouse events have incorrect inaxes/data properties when axes overlap (matplotlib 2.1.0)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9457/">#9457</a>: ax.fill_between broken for log scale and values below zero</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9558/">#9558</a>: Inconsistency between AutoLocator and AutoDateLocator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9288/">#9288</a>: Histograms disappear with logarithmic y-axis</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9628/">#9628</a>: Histogram missing in Matplotlib 2.1.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9609/">#9609</a>: matplotlib color not equal to the setting</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9611/">#9611</a>: Unexpected behaviour with string input to .plot and .fill_between</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9626/">#9626</a>: Categorical plot example not working in 2.02.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9348/">#9348</a>: Matplotlib introduction is unattributed</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/7158/">#7158</a>: Arrays are not equal in 2.0.0b4 testsuite on Fedora rawhide/aarch64 (ARM v8 64bit)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9520/">#9520</a>: XKCD context manager not resetting anymore in 2.1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/3491/">#3491</a>: What’s the best way to make a matplotlib colormap mutable?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9541/">#9541</a>: Broken Basemap rotpole projection</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9591/">#9591</a>: Unable to draw horizontal arrow using annotation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9592/">#9592</a>: Scientific notation digits on figure</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9590/">#9590</a>: Scientific format digits on figure</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9557/">#9557</a>: Behavior of hist() with normed=True changes from v2.0 to v2.1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9585/">#9585</a>: Cannot write JPG images anymore with Pillow 4.2</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9581/">#9581</a>: pixel sizes uneven with ImageGrid</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9577/">#9577</a>: Plotting pcolor with datetime along coordinate fails with TypeError: invalid type promotion</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9578/">#9578</a>: matplotlib 2.1.0 “stable”</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9467/">#9467</a>: Error on updating to matplotlib 2.1.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9249/">#9249</a>: basemap pcolormesh warning with matplotlib 2.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9443/">#9443</a>: Cartopy Border Plotting Fails on 2.1 Only</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9567/">#9567</a>: Possible bug in tight_layout?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9560/">#9560</a>: Can you add some speed speed to matplotlib.pyplot.stem?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9537/">#9537</a>: No Bugs at all</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8282/">#8282</a>: changing facecolor to ‘none’ prevents updating canvas</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/3708/">#3708</a>: examples/cursor.py gives RuntimeError on mac osx</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8090/">#8090</a>: Spectrogram of large arrays behaves badly on MacOSX backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/6538/">#6538</a>: On armv7hl, some get_cursor_data calls return 0 instead of None.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9545/">#9545</a>: plot_surface gives blank figure with log scale for axes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8426/">#8426</a>: PcolorImage does not set <code class="docutils literal notranslate"><span class="pre">_extent</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9538/">#9538</a>: How to avoid override pie</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9406/">#9406</a>: 2.1.0 serious regression in Qt5 backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9361/">#9361</a>: 2.1 change - Axis Limit Error</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9390/">#9390</a>: Save to .pdf doesn’t work in 2.1.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9485/">#9485</a>: FileNotFoundError while import matplotlib (maybe pyplot)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9332/">#9332</a>: Qt backend figureoptions.py does not work due to change in image.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/6516/">#6516</a>: savefig to pdf: ‘str’ object has no attribute ‘decode’</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9499/">#9499</a>: A 3D object appears in front of another object, even though it is physically behind it.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5474/">#5474</a>: tight_layout puts axes title below twiny xlabel</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9183/">#9183</a>: X-axis doesn’t show entirely</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8814/">#8814</a>: 3D plot camera-rotation does not update with mouse movement when using the MacOS backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9491/">#9491</a>: TextBox widget on MacOSX fails with RuntimeError: Cannot get window extent w/o renderer</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9496/">#9496</a>: barh edgecolor and hatch are not applied to all bars</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8804/">#8804</a>: Division by zero in AutoMinorLocator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9480/">#9480</a>: QWidget raise above canvas</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9489/">#9489</a>: Opening an interactive figure doesn’t work on MacOSX backend with matplotlib v2.1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/7092/">#7092</a>: pyplot.scatter method is not working with Iterator types of an input arguments</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8131/">#8131</a>: bad error message from pyplot.plot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8333/">#8333</a>: Rely on numpy to properly normalize histograms with unequal bin widths</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9334/">#9334</a>: Remove restriction in <code class="docutils literal notranslate"><span class="pre">plt.margins(m)</span></code> to 0 <= m <= 1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9474/">#9474</a>: [TST] qt5 backend test sometimes failing</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9377/">#9377</a>: Shadow applied to a simple patch does not show</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9355/">#9355</a>: DOC: developer tips guide incomplete (for complete newbie)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/2539/">#2539</a>: boxplot treats iterables differently by type</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/5630/">#5630</a>: Ipe backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9455/">#9455</a>: ticklabel and gridlines in polar projection in v2.1.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9088/">#9088</a>: Number of levels in contour can be larger than the requested number</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9471/">#9471</a>: AttributeError: ‘str’ object has no attribute ‘zorder’</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8941/">#8941</a>: Colorbar: ‘shrink’ not recognized at argument to colorbar when cax is specified</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9466/">#9466</a>: Plot window crashes when the ‘Edit axes’ button is pressed’</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8411/">#8411</a>: Saving figures as PDF miss aligns rotated labels</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9397/">#9397</a>: Incorrect labels returned with custom formatter and locator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9453/">#9453</a>: how to remove the black bounding box of legend?</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8193/">#8193</a>: eventplot throws exception when using color different than one of {‘b’, ‘g’, ‘r’, ‘c’, ‘m’, ‘y’, ‘k’, ‘w’}</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8883/">#8883</a>: Incorrect example for interactive plotting in Matplotlib Usage FAQ</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/7527/">#7527</a>: Locators raise unclear exceptions on MappingView input</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8769/">#8769</a>: seeing issue on six.py import name in matplotlib on python3.4</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9182/">#9182</a>: Text bug</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9326/">#9326</a>: Non-reproducible line in Image tutorial</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/8796/">#8796</a>: Varying results depending on freetype version</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9412/">#9412</a>: pyplot.pause doesn’t import the time module but uses it (v2.1.0)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9407/">#9407</a>: 2.1.0: Cannot save figures in GTK backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9176/">#9176</a>: Appveyor build failing</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9331/">#9331</a>: <code class="docutils literal notranslate"><span class="pre">matplotlib.pyplot</span></code> is missing from intersphinx</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9280/">#9280</a>: imshow errors when plotting completely masked array</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9349/">#9349</a>: user’s guide seriously denuded…</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9369/">#9369</a>: 2.1 - new problem with log ax.transData</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9371/">#9371</a>: Toolbar issue: Python3, wx4, windows only</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9366/">#9366</a>: MPL 2.1 cannot construct figure with figsize</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9351/">#9351</a>: mpl 2.1 barcharts edgecolor and linewidth only apply to first bar</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9360/">#9360</a>: When use a large data to draw a graph, It shows abnormal..</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9357/">#9357</a>: ENH: Pickle backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9345/">#9345</a>: matplotlib 2.1.0, backend macosx: need _BackendMac, got FigureManagerMac</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9344/">#9344</a>: ImportError: No module named functools_lru_cache</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9241/">#9241</a>: Errorbar plot with first value masked raises TypeError</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/issues/9322/">#9322</a>: Usage Guide has description “circled in green” for Axis from v 1.5</li>