-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathgithub_stats.txt
More file actions
1902 lines (1891 loc) · 106 KB
/
Copy pathgithub_stats.txt
File metadata and controls
1902 lines (1891 loc) · 106 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
.. _github-stats:
Github Stats
============
GitHub stats for 2014/08/26 - 2016/01/09 (tag: v1.4.0)
These lists are automatically generated, and may be incomplete or contain duplicates.
We closed 744 issues and merged 877 pull requests.
The following 260 authors contributed 5401 commits.
* Acanthostega
* Alan Du
* alex
* Alexander Taylor
* Alexei Colin
* Ali Mehdi
* Ali Uneri
* Alistair Muldal
* Allan Haldane
* AmyTeegarden
* Andreas Mayer
* Andy Zhu
* Antony Lee
* Arie
* Ariel Hernán Curiale
* Arnaud Gardelein
* Arpad Horvath
* basharovV
* Behram Mistree
* Ben Root
* Benjamin Reedlunn
* BHT
* Brett Cannon
* Brian McLaughlin
* Bruno Beltran
* cammil
* Casey Webster
* Casper van der Wel
* caspervdw
* chadawagner
* chebee7i
* Christian Brueffer
* Christoph Gohlke
* Cimarron Mittelsteadt
* CJ Carey
* curiale
* Damon McDougall
* DanHickstein
* Danhickstein
* David
* David Haberthür
* David Kua
* Devashish Deshpande
* domspad
* Dora Fraeman
* dsquareindia
* Duncan Macleod
* e-q
* Elena Glassman
* Elias Pipping
* Elliott Sales de Andrade
* elpres
* Emil Mikulic
* Endolith
* endolith
* Eric Dill
* Eric Firing
* Eric Ma
* Eric O. LEBIGOT (EOL)
* Erik Bray
* Eugen Beck
* Eugene Yurtsev
* Fabien Maussion
* Fabio Zanini
* Federico Ariza
* ffteja
* fibersnet
* Florian LB
* Florian Rhiem
* flothesof
* Francesco Montesano
* Francis Colas
* François Magimel
* frenchwr
* fvgoto
* gcallah
* Giovanni
* gluap
* Gregory Ashton
* Gregory R. Lee
* hamogu
* Hans Dembinski
* Hans Moritz Günther
* Hassan Kibirige
* Holger Peters
* hugadams
* Ian Thomas
* insertroar
* Ioannis Filippidis
* Isaac Schwabacher
* Isaac Slavitt
* Ismo Toijala
* itziakos
* Jaime Fernandez
* jaimefrio
* Jake VanderPlas
* James Pallister
* James R. Evans
* Jan Schulz
* Jan-willem De Bleser
* Jascha Ulrich
* Jason King
* Jason Liw Yan Chong
* Jason Miller
* JayP16
* jbbrokaw
* Jeff Lutgen
* Jeffrey Hokanson @ Loki
* Jens Hedegaard Nielsen
* Jeremy Fix
* Jessica B. Hamrick
* JGoutin
* jlutgen
* Jody Klymak
* Joe Kington
* Joel B. Mohler
* John Vandenberg
* Jorrit Wronski
* Josef Heinen
* Joseph Jon Booker
* Jouni K. Seppänen
* Jouni Seppänen
* jowr
* Julian Mehne
* Julien Lhermitte
* Julien Schueller
* Julien-Charles Lévesque
* Katy Huff
* Kevin Keating
* kikocorreoso
* Kimmo Palin
* klaus
* Konrad Förstner
* Konstantin Tretyakov
* Kristen M. Thyng
* Kristen Thyng
* leeonadoh
* Leeonadoh
* Lennart Fricke
* Leo Singer
* Levi Kilcher
* lichri12
* Lori J
* Loïc Estève
* Majid alDosari
* Marcos Duarte
* Marek Rudnicki
* Marin Gilles
* Markus Rothe
* Martin Fitzpatrick
* Martin Thoma
* masamson
* Masud Rahman
* Mathieu Duponchelle
* Matt Giuca
* Matt Hancock
* Matt Li
* Matt Shen
* Matthew Brett
* Matthias Bussonnier
* Maximilian Albert
* mbyt
* mdehoon
* mdipierro
* Mellissa Cross
* Michael Droettboom
* Michael Sarahan
* Michiel de Hoon
* Min RK
* Minty Zhang
* MirandaXM
* mrkrd
* Muhammad Mehdi
* Neil Crighton
* Nelle Varoquaux
* Niall Robinson
* Nicholas Devenish
* nickystringer
* Nico Schlömer
* Nicolas P. Rougier
* Nikita Kniazev
* Niklas Koep
* Nils Werner
* none
* nwin
* Ocean Wolf
* OceanWolf
* ocefpaf
* Oleg Selivanov
* Olga Botvinnik
* Orso Meneghini
* Pankaj Pandey
* Parfenov Sergey
* patchen
* Patrick Chen
* Paul G
* Paul Ganssle
* Paul Hobson
* Pete Bachant
* Peter St. John
* Peter Würtz
* Phil Elson
* productivememberofsociety666
* Przemysław Dąbek
* pupssman
* Ramiro Gómez
* Randy Olson
* rasbt
* Remi Rampin
* Robin Dunn
* rsnape
* Ryan May
* Ryan Morshead
* Ryan Nelson
* ryanbelt
* s9w
* Scott Lawrence
* sdementen
* Skelpdar
* Slav
* sohero
* Spencer McIntyre
* Stanley, Simon
* Stefan Lehmann
* Stefan Pfenninger
* Stefan van der Walt
* Stephen Horst
* Sterling Smith
* Steven Silvester
* Stuart Mumford
* switham
* Tamas Gal
* Thomas A Caswell
* Thomas Hisch
* Thomas Lake
* Thomas Robitaille
* Thomas Spura
* Till Stensitzki
* Tobias Megies
* Tomas Kazmar
* tomoemon
* u55
* ugurthemaster
* Ulrich Dobramysl
* Umair Idris
* Vadim Markovtsev
* Víctor Zabalza
* Warren Weckesser
* Wen Li
* Wendell Smith
* Werner F Bruhin
* wernerfb
* William Manley
* Xiaowen Tang
* xuanyuansen
* Yu Feng
* Yunfei Yang
* Yuri D'Elia
* Yuval Langer
* Zair Mubashar
GitHub issues and pull requests:
Pull Requests (877):
* :ghpull:`5828`: FIX: overzealous clean up of imports
* :ghpull:`5826`: Strip spaces in properties doc after newline.
* :ghpull:`5815`: Properly minimize the rasterized layers
* :ghpull:`5752`: Reorganise mpl_toolkits documentation
* :ghpull:`5788`: Fix ImportError: No module named 'StringIO' on Python 3
* :ghpull:`5797`: Build docs on python3.5 with linkcheck running on python 2.7
* :ghpull:`5778`: Fix #5777. Don't warn when applying default style
* :ghpull:`4857`: Toolbars keep history if axes change (navtoolbar2 + toolmanager)
* :ghpull:`5790`: Fix ImportError: No module named 'Tkinter' on Python 3
* :ghpull:`5789`: Index.html template. Only insert snippet if found
* :ghpull:`5783`: MNT: remove reference to deleted example
* :ghpull:`5780`: Choose offset text from ticks, not axes limits.
* :ghpull:`5776`: Add .noseids to .gitignore.
* :ghpull:`5466`: Fixed issue with ``rasterized`` not working for errorbar
* :ghpull:`5773`: Fix eb rasterize
* :ghpull:`5440`: Fix #4855: Blacklist rcParams that aren't style
* :ghpull:`5764`: BUG: make clabel obey fontsize kwarg
* :ghpull:`5771`: Remove no longer used Scikit image code
* :ghpull:`5766`: Deterministic LaTeX text in SVG images
* :ghpull:`5762`: Don't fallback to old ipython_console_highlighting
* :ghpull:`5728`: Use custom RNG for sketch path
* :ghpull:`5454`: ENH: Create an abstract base class for movie writers.
* :ghpull:`5600`: Fix #5572: Allow passing empty range to broken_barh
* :ghpull:`4874`: Document mpl_toolkits.axes_grid1.anchored_artists
* :ghpull:`5746`: Clarify that easy_install may be used to install all dependencies
* :ghpull:`5739`: Silence labeled data warning in tests
* :ghpull:`5732`: RF: fix annoying parens bug
* :ghpull:`5735`: Correct regex in filterwarnings
* :ghpull:`5640`: Warning message prior to fc-list command
* :ghpull:`5686`: Remove banner about updating styles in 2.0
* :ghpull:`5676`: Fix #5646: bump the font manager version
* :ghpull:`5719`: Fix #5693: Implemented is_sorted in C
* :ghpull:`5721`: Remove unused broken doc example axes_zoom_effect
* :ghpull:`5664`: Low-hanging performance improvements
* :ghpull:`5709`: Addresses issue #5704. Makes usage of parameters clearer
* :ghpull:`5716`: Fix #5715.
* :ghpull:`5690`: Fix #5687: Don't pass unicode to QApplication()
* :ghpull:`5707`: Fix string format substitution key missing error
* :ghpull:`5706`: Fix SyntaxError on Python 3
* :ghpull:`5700`: BUG: handle colorbar ticks with boundaries and NoNorm; closes #5673
* :ghpull:`5702`: Add missing substitution value
* :ghpull:`5701`: str.formatter invalid
* :ghpull:`5697`: TST: add missing decorator
* :ghpull:`5683`: Include outward ticks in bounding box
* :ghpull:`5688`: Improved documentation for FuncFormatter formatter class
* :ghpull:`5469`: Image options
* :ghpull:`5677`: Fix #5573: Use SVG in docs
* :ghpull:`4864`: Add documentation for mpl_toolkits.axes_grid1.inset_locator
* :ghpull:`5434`: Remove setup.py tests and adapt docs to use tests.py
* :ghpull:`5586`: Fix errorbar extension arrows
* :ghpull:`5653`: Update banner logo on main website
* :ghpull:`5667`: Nicer axes names in selector for figure options.
* :ghpull:`5672`: Fix #5670. No double endpoints in Path.to_polygon
* :ghpull:`5553`: qt: raise each new window
* :ghpull:`5594`: FIX: formatting in LogFormatterExponent
* :ghpull:`5588`: Adjust number of ticks based on length of axis
* :ghpull:`5671`: Deterministic svg
* :ghpull:`5659`: Change ``savefig.dpi`` and ``figure.dpi`` defaults
* :ghpull:`5662`: Bugfix for test_triage tool on Python 2
* :ghpull:`5661`: Fix #5660. No FileNotFoundError on Py2
* :ghpull:`4921`: Add a quit_all key to the default keymap
* :ghpull:`5651`: Shorter svg files
* :ghpull:`5656`: Fix #5495. Combine two tests to prevent race cond
* :ghpull:`5383`: Handle HiDPI displays in WebAgg/NbAgg backends
* :ghpull:`5307`: Lower test tolerance
* :ghpull:`5631`: WX/WXagg backend add code that zooms properly on a Mac with a Retina display
* :ghpull:`5644`: Fix typo in pyplot_scales.py
* :ghpull:`5639`: Test if a frame is not already being deleted before trying to Destroy.
* :ghpull:`5583`: Use data limits plus a little padding by default
* :ghpull:`4702`: sphinxext/plot_directive does not accept a caption
* :ghpull:`5612`: mathtext: Use DejaVu display symbols when available
* :ghpull:`5374`: MNT: Mailmap fixes and simplification
* :ghpull:`5516`: OSX virtualenv fixing by creating a simple alias
* :ghpull:`5546`: Fix #5524: Use large, but finite, values for contour extensions
* :ghpull:`5621`: Tst up coverage
* :ghpull:`5620`: FIX: quiver key pivot location
* :ghpull:`5607`: Clarify error when plot() args have bad shapes.
* :ghpull:`5604`: WIP: testing on windows and conda packages/ wheels for master
* :ghpull:`5611`: Update colormap user page
* :ghpull:`5587`: No explicit mathdefault in log formatter
* :ghpull:`5591`: fixed ordering of lightness plots and changed from getting lightness …
* :ghpull:`5605`: Fix DeprecationWarning in stackplot.py
* :ghpull:`5603`: Draw markers around center of pixels
* :ghpull:`5596`: No edges on filled things by default
* :ghpull:`5249`: Keep references to modules required in pgf LatexManager destructor
* :ghpull:`5589`: return extension metadata
* :ghpull:`5566`: DOC: Fix typo in Axes.bxp.__doc__
* :ghpull:`5570`: use base64.encodestring on python2.7
* :ghpull:`5578`: Fix #5576: Handle CPLUS_INCLUDE_PATH
* :ghpull:`5555`: Use shorter float repr in figure options dialog.
* :ghpull:`5552`: Dep contourset vminmax
* :ghpull:`5433`: ENH: pass dash_offset through to gc for Line2D
* :ghpull:`5342`: Sort and uniquify style entries in figure options.
* :ghpull:`5484`: fix small typo in documentation about CheckButtons.
* :ghpull:`5547`: Fix #5545: Fix collection scale in data space
* :ghpull:`5500`: Fix #5475: Support tolerance when picking patches
* :ghpull:`5501`: Use facecolor instead of axisbg/axis_bgcolor
* :ghpull:`5544`: Revert "Fix #5524. Use finfo.max instead of np.inf"
* :ghpull:`5146`: Move impl. of plt.subplots to Figure.add_subplots.
* :ghpull:`5534`: Fix #5524. Use finfo.max instead of np.inf
* :ghpull:`5521`: Add test triage tool
* :ghpull:`5537`: Fix for broken maplotlib.test function
* :ghpull:`5539`: Fix docstring of violin{,plot} for return value.
* :ghpull:`5515`: Fix some theoretical problems with png reading
* :ghpull:`5526`: Add boxplot params to rctemplate
* :ghpull:`5533`: Fixes #5522, bug in custom scale example
* :ghpull:`5514`: adding str to force string in format
* :ghpull:`5512`: V2.0.x
* :ghpull:`5465`: Better test for isarray in figaspect(). Closes #5464.
* :ghpull:`5503`: Fix #4487: Take hist bins from rcParam
* :ghpull:`5485`: Contour levels must be increasing
* :ghpull:`4678`: TST: Enable coveralls/codecov code coverage
* :ghpull:`5437`: Make "classic" style have effect
* :ghpull:`5458`: Removed normalization of arrows in 3D quiver
* :ghpull:`5480`: make sure an autoreleasepool is in place
* :ghpull:`5451`: [Bug] masking of NaN Z values in pcolormesh
* :ghpull:`5453`: Force frame rate of FFMpegFileWriter input
* :ghpull:`5452`: Fix axes.set_prop_cycle to handle any generic iterable sequence.
* :ghpull:`5448`: Fix #5444: do not access subsuper nucleus _metrics if not available
* :ghpull:`5439`: Use DejaVu Sans as default fallback font
* :ghpull:`5204`: Minor cleanup work on navigation, text, and customization files.
* :ghpull:`5432`: Don't draw text when it's completely clipped away
* :ghpull:`5426`: MNT: examples: Set the aspect ratio to "equal" in the double pendulum animation.
* :ghpull:`5214`: Use DejaVu fonts as default for text and mathtext
* :ghpull:`5306`: Use a specific version of Freetype for testing
* :ghpull:`5410`: Remove uses of font.get_charmap
* :ghpull:`5407`: DOC: correct indentation
* :ghpull:`4863`: [mpl_toolkits] Allow "figure" kwarg for host functions in parasite_axes
* :ghpull:`5166`: [BUG] Don't allow 1d-arrays in plot_surface.
* :ghpull:`5360`: Add a new memleak script that does everything
* :ghpull:`5361`: Fix #347: Faster text rendering in Agg
* :ghpull:`5373`: Remove various Python 2.6 related workarounds
* :ghpull:`5398`: Updating 2.0 schedule
* :ghpull:`5389`: Faster image generation in WebAgg/NbAgg backends
* :ghpull:`4970`: Fixed ZoomPanBase to work with log plots
* :ghpull:`5387`: Fix #3314 assert mods.pop(0) fails
* :ghpull:`5385`: Faster event delegation in WebAgg/NbAgg backends
* :ghpull:`5384`: BUG: Make webagg work without IPython installed
* :ghpull:`5358`: Fix #5337. Turn off --no-capture (-s) on nose
* :ghpull:`5379`: DOC: Fix typo, broken link in references
* :ghpull:`5371`: DOC: Add what's new entry for TransformedPatchPath.
* :ghpull:`5299`: Faster character mapping
* :ghpull:`5356`: Replace numpy funcs for scalars.
* :ghpull:`5359`: Fix memory leaks found by memleak_hawaii3.py
* :ghpull:`5357`: Fixed typo
* :ghpull:`4920`: ENH: Add TransformedPatchPath for clipping.
* :ghpull:`5301`: BUG: Dot should not be spaced when used as a decimal separator
* :ghpull:`5103`: Add option to package DLL files
* :ghpull:`5348`: windows dlls packaging
* :ghpull:`5346`: Make sure that pyparsing 2.0.4 is not installed.
* :ghpull:`5340`: Improve compatibility for h264 ffmpeg-encoded videos.
* :ghpull:`5295`: Reduce number of font file handles opened
* :ghpull:`5330`: Reduce dupe between tests.py and matplotlib.test
* :ghpull:`5324`: Fix #5302: Proper alpha-blending for jpeg
* :ghpull:`5339`: PEP8 on Python 3.5
* :ghpull:`5215`: TST: drop py2.6 & py3.3 testing
* :ghpull:`5313`: Fix the minortick-fix
* :ghpull:`5333`: Patch 2
* :ghpull:`5276`: Use lock directory to prevent race conditions
* :ghpull:`5322`: Fix #5316: Remove hardcoded parameter from barh doc
* :ghpull:`5300`: Fixed compiler warnings in _macosx.m
* :ghpull:`5304`: Prelimiary fix for Mac OSX backend threading issues
* :ghpull:`5297`: BUG: recent numpy fails on non-int shape
* :ghpull:`5283`: Make new colormaps full-fledged citizens
* :ghpull:`5296`: Fix STIX virtual font entry for M script character
* :ghpull:`5285`: Fix some compiler warnings
* :ghpull:`5288`: Doc build fixes
* :ghpull:`5289`: Fix IndexError in cursor_demo.py.
* :ghpull:`5290`: implemeted get_ticks_direction()
* :ghpull:`4965`: WIP: Add new Colormaps to docs
* :ghpull:`5284`: New Colormaps to docs
* :ghpull:`4329`: Write status message in single line in Qt toolbar.
* :ghpull:`3838`: Fix units examples under python3
* :ghpull:`5279`: On Windows, use absolute paths to figures in Sphinx documents if necessary
* :ghpull:`5274`: Check dimensions of arrays passed to C++, handle 0 dimensions
* :ghpull:`5273`: Provide message if test data is not installed
* :ghpull:`5268`: Document and generalise $MATPLOTLIBRC
* :ghpull:`4898`: HostAxesBase now adds appropriate _remove_method to its parasite axes.
* :ghpull:`5244`: Matlab Style Label Warns In Test
* :ghpull:`5236`: DOC: tweak README formatting
* :ghpull:`5228`: Remove mentions of SourceForge
* :ghpull:`5231`: include links to the mailing list in the README
* :ghpull:`5235`: Add link to "mastering matplotlib" book
* :ghpull:`5233`: Skip over broken TTF font when creating cache
* :ghpull:`5230`: Fix casting bug in streamplot
* :ghpull:`5177`: MAINT: dviread refactoring
* :ghpull:`5223`: Update dateutil URL.
* :ghpull:`5186`: DOC: Fix docstrings for multiple parameters
* :ghpull:`5217`: Fix PathEffect rendering on some backends
* :ghpull:`5216`: Enable testing without internet access.
* :ghpull:`5183`: TST: fix ``AttributeError: 'module' object has no attribute 'nl_langinfo'`` on Windows
* :ghpull:`5203`: Fix mathtext_wx example not redrawing plots
* :ghpull:`5039`: sphinxext pot_directive: more robust backend switching
* :ghpull:`4915`: TransformWrapper pickling fixes
* :ghpull:`5170`: [MAINT] Add symlog locator to __all__ and to the docs
* :ghpull:`5207`: V1.5.x
* :ghpull:`5021`: Use json for the font cache instead of pickle
* :ghpull:`5184`: TST: fix test_mlab.test_griddata_nn failures on Windows
* :ghpull:`5182`: Fix ``ValueError: invalid PNG header`` on Windows
* :ghpull:`5189`: DOC: Fix encoding for LaTeX
* :ghpull:`5178`: DOC: Fix description of draw_markers in api_changes.rst
* :ghpull:`5147`: Cleaned up text in pyplot_tutorial.rst
* :ghpull:`5171`: Fix exception with Pillow 3
* :ghpull:`5153`: MNT: more minor tweaks to qt_compat.py
* :ghpull:`5167`: [BUG] symlog support for ax.minorticks_on()
* :ghpull:`5168`: Fix a bounds check
* :ghpull:`5108`: added None option to _get_view, also fixed a typo
* :ghpull:`5106`: FIX: array_view construction for empty arrays
* :ghpull:`5157`: Update MEP12.rst
* :ghpull:`5127`: mep12 on cursor_demo.py
* :ghpull:`5154`: TST: use patched nose for py3.6 compat
* :ghpull:`5150`: FIX: set internal flags first in FigureCanvasBase
* :ghpull:`5134`: qt imports fix
* :ghpull:`5080`: Try to make backend_gdk compatible with numpy 1.6
* :ghpull:`5148`: FIX: scatter accepts 2-D x, y, c; closes #5141
* :ghpull:`5138`: MAINT: use travis wheel repository for 3.5 build
* :ghpull:`5129`: FIX: be more careful about import gobject
* :ghpull:`5130`: DOC: add API notes for jquery upgrade
* :ghpull:`5133`: DOC: Update polar examples to use projection kwarg
* :ghpull:`5091`: Upgrade jquery and jquery-ui
* :ghpull:`5110`: Travis: Update Python to 3.5 final
* :ghpull:`5126`: mep12 on customize_rc.py
* :ghpull:`5124`: mep12 on ellipse_rotated.py
* :ghpull:`5125`: mep12 on ellipse_demo.py
* :ghpull:`5123`: mep12 on errorbar_limits.py
* :ghpull:`5117`: mep12 on fill_spiral.py
* :ghpull:`5118`: mep12 on figure_title.py
* :ghpull:`5116`: Mep12 fonts table ttf.py
* :ghpull:`5115`: mep12 on fonts_demo.py
* :ghpull:`5114`: BLD: setup.py magic to get versioneer to work
* :ghpull:`5109`: Fix for bug in set_cmap in NonUniformImage
* :ghpull:`5100`: The Visual C++ Redistributable for Visual Studio 2015 is required for Python 3.5
* :ghpull:`5099`: Fix corrupted stix_fonts_demo example
* :ghpull:`5084`: Fix segfault in ft2font
* :ghpull:`5092`: Generate reversed ListedColormaps
* :ghpull:`5085`: corrected doc string
* :ghpull:`5081`: Add WinPython and Cycler to installation instructions for Windows
* :ghpull:`5079`: Improve whats new
* :ghpull:`5063`: added tick labels from values demo
* :ghpull:`5075`: mep12 on fonts_demo_kw.py
* :ghpull:`5073`: DOC: updated documented dependencies
* :ghpull:`5014`: Add Travis job with 3.6 nightly
* :ghpull:`5071`: Fix URLError: <urlopen error unknown url type: c> on Windows
* :ghpull:`5070`: Bugfix for TriAnalyzer mismatched indices, part 2
* :ghpull:`5072`: Fix backend_driver.py fails on non-existent files
* :ghpull:`5069`: Typos in api_changes and whats_new
* :ghpull:`5068`: Fix format string for Python 2.6
* :ghpull:`5066`: Doc merge whatsnew apichanges
* :ghpull:`5062`: Fix for issue4977 mac osx
* :ghpull:`5064`: Use versioneer for version
* :ghpull:`5065`: Bugfix for TriAnalyzer mismatched indexes
* :ghpull:`5060`: FIX: add check if the renderer exists
* :ghpull:`4803`: Fix unit support with ``plot`` and ``pint``
* :ghpull:`4909`: figure option dialog does not properly handle units
* :ghpull:`5053`: Unpack labeled data alternative
* :ghpull:`4829`: ENH: plotting methods can unpack labeled data
* :ghpull:`5044`: Added PDF version of navigation icons
* :ghpull:`5048`: Test with 3.5rc4
* :ghpull:`5043`: resize_event not working with MacOSX backend
* :ghpull:`5041`: mep12 on ganged_plots.py
* :ghpull:`5040`: mep12 on ginput_demo.py
* :ghpull:`5038`: PRF: only try IPython if it is already imported
* :ghpull:`5020`: mathtext: Add ``-`` to spaced symbols, and do not space symbols at start of string
* :ghpull:`5036`: Update what's new for RectangeSelector
* :ghpull:`3937`: Rectangle Selector Upgrade
* :ghpull:`5031`: support subslicing when x is masked or has nans; closes #5016
* :ghpull:`5025`: [MRG] ENH Better error message when providing wrong fontsizes
* :ghpull:`5032`: ENH: More useful warning about locale errors
* :ghpull:`5019`: locale.getdefaultlocale() fails on OS X
* :ghpull:`5030`: mep12 on geo_demo.py
* :ghpull:`5024`: FIX
* :ghpull:`5023`: Fix Agg clipping
* :ghpull:`5017`: MEP22 warnings
* :ghpull:`4887`: FIX: mathtext accents
* :ghpull:`4995`: animation fixes
* :ghpull:`4972`: Qt5: Move agg draw to main thread and fix rubberband
* :ghpull:`5015`: Fix the fontdict parameter in set_xticklabels/set_yticklabels
* :ghpull:`5009`: TST: bump python 3.5 version to rc2
* :ghpull:`5008`: fix #5007
* :ghpull:`4807`: setupext.py: let the user set a different pkg-config
* :ghpull:`5010`: DOC: Add information on new views for custom Axes.
* :ghpull:`4994`: Fix syntax error
* :ghpull:`4686`: [WIP] Property Cycling
* :ghpull:`5006`: fix bug
* :ghpull:`4795`: ENH: Add API to manage view state in custom Axes.
* :ghpull:`4924`: MNT: changed close button color and text
* :ghpull:`4992`: showpage at the end of .eps files
* :ghpull:`4991`: FIX: double z-axis draw in mplot3D
* :ghpull:`4988`: BUG: in ScalarFormatter, handle two identical locations; closes #4761
* :ghpull:`4873`: mathtext: Finetuning sup/super block to match TeX reference
* :ghpull:`4985`: Fix for #4984
* :ghpull:`4982`: Mep12 hist2d log demo.py
* :ghpull:`4981`: Mep12 image demo2.py
* :ghpull:`4980`: Mep12 image interp.py
* :ghpull:`4983`: MEP12 on hist2d_demo.py
* :ghpull:`4942`: text update properties does not handle bbox properly
* :ghpull:`4904`: position of text annotations looses unit information
* :ghpull:`4979`: PY2K : in python2 lists don't have copy method
* :ghpull:`4689`: Update to score_family in font_manager.py
* :ghpull:`4944`: qt backend draw_idle doesn't work
* :ghpull:`4943`: qt backend has more draws than necessary
* :ghpull:`4969`: FIX: account for None in Line2D.axes setter
* :ghpull:`4964`: Clarify what "axes" means
* :ghpull:`4961`: Bounds checking for get_cursor_data(). Closes #4957
* :ghpull:`4963`: Grammar fix for pyplot tutorial
* :ghpull:`4958`: BUG: allow facecolors to be overridden in LineCollection
* :ghpull:`4959`: Fix link in documentation. Closes #4391.
* :ghpull:`4956`: MEP12 on image masked.py
* :ghpull:`4950`: Mep12 image origin.py
* :ghpull:`4953`: Make sure that data is a number before formatting. Fix for #4806
* :ghpull:`4948`: Mep12 layer images.py
* :ghpull:`4949`: Mep12 invert axes.py
* :ghpull:`4951`: FIX: argument order in RendereAgg.restore_region
* :ghpull:`4945`: qt backend default bbox not set when blitting
* :ghpull:`4456`: FIX : first pass at fixing nbagg close issue
* :ghpull:`4939`: NBAgg: fix Jupyter shim warning
* :ghpull:`4932`: MEP12 on load_converter.py
* :ghpull:`4935`: Add api change note about lena removal
* :ghpull:`4878`: PRF: only check some artists on mousemove
* :ghpull:`4934`: Colormep12rebase
* :ghpull:`4933`: MEP12 on line_collection2.py
* :ghpull:`4931`: MEP12 on loadrec.py
* :ghpull:`4929`: Correct numpy doc format in cbook api docs
* :ghpull:`4928`: remove lena images
* :ghpull:`4926`: Mep12 log test.py
* :ghpull:`4925`: Make sure _edgecolors is a string before comparison to string.
* :ghpull:`4923`: modifying sourceforge links
* :ghpull:`4738`: MNT: overhaul stale handling
* :ghpull:`4922`: DOC: update qt related prose
* :ghpull:`4669`: Creation of the 'classic' matplotlib style
* :ghpull:`4913`: Agg restore_region is broken
* :ghpull:`4911`: Super short lines with arrows do not act well
* :ghpull:`4919`: Issue08
* :ghpull:`4906`: broken_barh does not properly support units
* :ghpull:`4895`: Add latex preamble to texmanager _fontconfig
* :ghpull:`4816`: FIX: violinplot crashed if input variance was zero
* :ghpull:`4890`: Reduce redudant code in axes_grid{,1}.colorbar
* :ghpull:`4892`: Fix single-shot timers in nbagg backend
* :ghpull:`4875`: FIX: add explict draw_if_interactive in figure()
* :ghpull:`4885`: changed a pylab reference
* :ghpull:`4884`: mep12 on manual_axis.py
* :ghpull:`4899`: Replace kwdocd in docs with docstring.interpd/dedent_interpd
* :ghpull:`4894`: Qt5: Eliminate slow path when showing messages
* :ghpull:`4824`: Two bugs in colors.BoundaryNorm
* :ghpull:`4876`: Create a temporary bitmap context if needed
* :ghpull:`4881`: mep12 on matplotlib_icon.py
* :ghpull:`4882`: mep12 on masked_demo.py
* :ghpull:`4844`: Avoid possible exception when toggling full-screen
* :ghpull:`4843`: Rev coord wrapping
* :ghpull:`4542`: Fix cairo graphics context
* :ghpull:`4743`: BUG: Fix alternate toolbar import on Python 3.
* :ghpull:`4870`: mep12 on matshow.py
* :ghpull:`4871`: mep12 on mri_demo.py
* :ghpull:`4846`: mep12 on plotfile_demo.py
* :ghpull:`4868`: mep12 on multiline.py
* :ghpull:`4861`: mep12 on multiple_figs_demo.py
* :ghpull:`4845`: mep12 on print_stdout.py
* :ghpull:`4860`: Document get_cachedir() in troubleshooting
* :ghpull:`4833`: mep12 on quiver_demo.py
* :ghpull:`4848`: Mep12 newscalarformatter demo.py
* :ghpull:`4852`: Null strides wireframe
* :ghpull:`4588`: FIX: re-order symbol and acent in mathtext
* :ghpull:`4800`: Fixes to funcanimation
* :ghpull:`4838`: scale descent back
* :ghpull:`4840`: Improve error when trying to edit empty figure.
* :ghpull:`4836`: mep12 on psd_demo.py
* :ghpull:`4835`: Calculate text size and descent correctly
* :ghpull:`4831`: mep12 changes to axes_props.py
* :ghpull:`4834`: Test on Python 3.5 beta4
* :ghpull:`4832`: mep12: changed pylab to pyplot
* :ghpull:`4813`: Prf mouse move hitlist
* :ghpull:`4830`: mep12 on axes_demo.py
* :ghpull:`4819`: mep12 on pstest.py
* :ghpull:`4817`: mep12 on log_bar.py
* :ghpull:`4820`: mep12 on arctest.py
* :ghpull:`4826`: mep12 on image_demo2.py
* :ghpull:`4825`: Remove trailing zeroes in path string output
* :ghpull:`4818`: Mep12 logo.py
* :ghpull:`4804`: BUG: Fix ordering in radar chart example.
* :ghpull:`4801`: Travis switch from nightly to 3.5 beta
* :ghpull:`4811`: nan_test.py mep12
* :ghpull:`4771`: NF - New legend example with line collection
* :ghpull:`4798`: Fix msvc14 compile errors
* :ghpull:`4805`: Axes3d doc typo
* :ghpull:`4797`: remove empty constuctor
* :ghpull:`4785`: Animation conversion to HTML5 video
* :ghpull:`4793`: Added code information to Poly3DCollection
* :ghpull:`4790`: Test Cleanup Closes #4772
* :ghpull:`4778`: FIX: remove equality check in line2D.set_color
* :ghpull:`4777`: mep12 on pythonic_matplotlib.py
* :ghpull:`4776`: mep12 on scatter_masked.py
* :ghpull:`4707`: ENH: Add newly proposed colormaps
* :ghpull:`4768`: ENH: add remove call back to axes
* :ghpull:`4766`: FIX: fix python2 unicode compatibility
* :ghpull:`4763`: Return from draw_idle as soon as possible
* :ghpull:`4718`: Expose interpolation short names at module level.
* :ghpull:`4757`: Use BytesIO from io.
* :ghpull:`4752`: FIX: cast input to Rectangle to float
* :ghpull:`4605`: ENH: Use png predictors when compressing images in pdf files
* :ghpull:`4178`: Annotation: always use FancyBboxPatch instead of bbox_artist
* :ghpull:`3947`: Date fixes
* :ghpull:`4433`: ENH : stepfill between
* :ghpull:`4733`: Backport #4335 to master
* :ghpull:`4612`: Only use asynchronous redraw methods when handling GUI events in Qt5Agg (fix #4604)
* :ghpull:`4719`: ENH: add inverse function to _deprecated_map
* :ghpull:`4727`: FIX: fix afm + py3k + logscale
* :ghpull:`4747`: Added mplstereonet blurb to mpl_toolkits listing
* :ghpull:`4646`: MEP12 on tex_unicode_demo.py
* :ghpull:`4631`: Standardized imports
* :ghpull:`4734`: mep12 on scatter_profile.py
* :ghpull:`4664`: MEP12 on axis_equal_demo.py
* :ghpull:`4660`: MEP12-on-arrow_demo.py
* :ghpull:`4657`: MEP12-on-anscombe.py
* :ghpull:`4663`: MEP12 on axes_props.py
* :ghpull:`4654`: MEP12 on annotation_demo.py
* :ghpull:`4726`: DOC: whats_new for axes.labelpad
* :ghpull:`4739`: MNT: Remove unused code in pdf backend
* :ghpull:`4724`: DOC: slightly update demo
* :ghpull:`4731`: Implement draw_idle
* :ghpull:`3648`: dates.YearLocator doesn't handle inverted axes
* :ghpull:`4722`: STY: pep8 that slipped by the tests
* :ghpull:`4723`: Travis: Revert to using tests.py. Temp fix for #4720
* :ghpull:`4721`: CLN: remove unused code path
* :ghpull:`4717`: BUG: when autoscaling, handle tiny but non-zero values; closes #4318
* :ghpull:`4506`: Enh python repl rd2
* :ghpull:`4714`: Add an option to streamplot to manually specify the seed points.
* :ghpull:`4709`: FIX: update scale on shared axes
* :ghpull:`4713`: API/CLN: remove threading classes from cbook
* :ghpull:`4473`: ENH: property if DrawingArea clips children
* :ghpull:`4710`: FIX: gracefully deal with empty size lists
* :ghpull:`4593`: FIX: Correct output of mlab._spectral_helper when scale_by_freq=False
* :ghpull:`4708`: Travis: Set exit to true in nose.main
* :ghpull:`4701`: minor typo in docstring
* :ghpull:`4677`: Set figure width and height with set_size_inches
* :ghpull:`4684`: MEP12 on set_and_get.py
* :ghpull:`4683`: MEP12 on stix_fonts_demo.py
* :ghpull:`4668`: Remove test dependencies from install_requires
* :ghpull:`4687`: Travis: Upgrade pip and setuptools
* :ghpull:`4685`: MEP12-on-barchart_demo2.py
* :ghpull:`4682`: Mods to documentation.
* :ghpull:`4218`: Addition of RC parameters
* :ghpull:`4659`: Mep12 shared to spectrum
* :ghpull:`4670`: Mep12 usetex
* :ghpull:`4647`: Be more correct when validating bbox rc params
* :ghpull:`4639`: MEP12 on transoffset.py
* :ghpull:`4648`: MEP12 on system_monitor.py
* :ghpull:`4655`: Mep12 step demo.py
* :ghpull:`4656`: Mep12 spine to stem
* :ghpull:`4653`: MEP12 on alignment_test.py
* :ghpull:`4652`: Mep12 stock demo.py
* :ghpull:`4651`: Mep12 subplot toolbar.py
* :ghpull:`4649`: MEP12 changes on symlog_demo.py
* :ghpull:`4645`: MEP12 on text_handles.py
* :ghpull:`4611`: Add % bachelors degrees plot example
* :ghpull:`4667`: Install latest version of mock on python 2.7
* :ghpull:`4644`: MEP12 on text_rotation.py
* :ghpull:`4650`: MEP12 on subplots_adjust.py
* :ghpull:`4640`: MEP12 on toggle_images.py
* :ghpull:`4643`: MEP12 on text_rotation_relative_to_line.py
* :ghpull:`4641`: MEP12 on to_numeric.py
* :ghpull:`4630`: MEP12 pylab changes on zorder_demo.py
* :ghpull:`4635`: MEP12 on tricontour_vs_griddata.py
* :ghpull:`4665`: PEP8 fix usetex_fonteffects
* :ghpull:`4662`: usetex_fonteffects.py: Import matplotlib here as needed
* :ghpull:`4637`: MEP12 on tricontour_smooth_user.py
* :ghpull:`4583`: Mnt mailmap
* :ghpull:`4642`: Fixed and classified equal_aspect_ratio.py
* :ghpull:`4632`: Changed pylab to plt.
* :ghpull:`4629`: translated pylab import to plts
* :ghpull:`4634`: MEP12 changes to use_tex_baseline_test.py
* :ghpull:`4627`: Reclassify contourf log.py
* :ghpull:`4626`: In coutourf_log.py, changed ``P.`` to ``plt.``
* :ghpull:`4623`: Provide std::isfinite for msvc
* :ghpull:`4624`: Fix segfault on Windows
* :ghpull:`4617`: Fix for issue 4609
* :ghpull:`4608`: Axes.hist: use bottom for minimum if log and histtype='step...'
* :ghpull:`4618`: swap standard deviations so that men's means are shown with men's std…
* :ghpull:`4616`: Explicitly install Mock at version 1.0.1
* :ghpull:`4610`: MNT: Replace outdated comment with self-explaining code (hatching in pdf backend)
* :ghpull:`4603`: MNT: Minor cleanups in the pdf backend and related files
* :ghpull:`4601`: FIX: handle empty legend in qt figureoption
* :ghpull:`4589`: Add separate drawstyles options to Qt figureoptions dialog
* :ghpull:`4547`: FIX: accept non-ascii in dvipng --version output
* :ghpull:`4595`: Fix alpha channels in PDF images
* :ghpull:`4591`: _create_tmp_config_dir() "mkdirs" the returned dir
* :ghpull:`4596`: Add remaining seaborn style sheets
* :ghpull:`4594`: Revert "WX Monkey patch ClientDC for name changes"
* :ghpull:`4586`: BUG: respect alpha in RGBA markeredgecolor; closes #4580
* :ghpull:`4570`: Add Seaborn style sheets; addresses #4566
* :ghpull:`4587`: DOC: clairify auto-level behavior
* :ghpull:`4544`: MNT: Deprecate idle_event and remove it from all but wx backends
* :ghpull:`4522`: type1font.py fixes and test case
* :ghpull:`4578`: Fixed typo in docstring #4562
* :ghpull:`4564`: DOC/MNT: Throwing some docstrings at axes_rgb.py
* :ghpull:`4565`: DOC: clean up rst in whats_new folder
* :ghpull:`4572`: FIX: remove unicode in wx_compat
* :ghpull:`4571`: Don't ignore the ``fig`` arg in demo code
* :ghpull:`4569`: FIX: sign is not defined
* :ghpull:`4503`: Fix draw on show
* :ghpull:`4551`: %s -> %r else if invalid char unable to print error
* :ghpull:`4554`: A few WX phoenix related changes
* :ghpull:`4555`: Avoid making nose a dependency for matplotlib.testing.compare
* :ghpull:`4553`: BUG fix: prevent 2D axis from showing up after calling Axes3D.cla()
* :ghpull:`3602`: Add rcParams support for markers' fillstyle prop
* :ghpull:`4499`: Jklymak colormap norm examp
* :ghpull:`3518`: Left ventricle bull eye
* :ghpull:`4550`: Doc AHA bullseye
* :ghpull:`4527`: Use C++ stdlib for isfinite etc.
* :ghpull:`2783`: Use metric identifiers to parse an AFM character metric line
* :ghpull:`4548`: qt_compat: supply more helpful message when no pyqt or pyside is found
* :ghpull:`4541`: Directly link matplotlib.org and not sourceforge.net
* :ghpull:`4530`: Get rid of annoying border for Tk Canvases
* :ghpull:`3242`: DateFormatter shows microseconds instead of %f for years <= 1900
* :ghpull:`4153`: bytes2pdatenum
* :ghpull:`4535`: FIX: move non-finite position check in text.draw
* :ghpull:`4208`: Fix compression of grayscale rasterized images when using (e)ps distilled with xpdf.
* :ghpull:`4533`: Revert "made idle_event() in backend_bases.py return True"
* :ghpull:`4163`: Fix #4154: Return a writable buffer from conv_color
* :ghpull:`4310`: Square plots
* :ghpull:`4449`: capsize with default in matplotlibrc
* :ghpull:`4474`: Possible fix for hatching problems inside legends (PDF backend)
* :ghpull:`4524`: CLN: explicitly cast (void \*) -> (char \*)
* :ghpull:`4519`: Removing intel preprocessors from qhull_a.h
* :ghpull:`4521`: Raise more useful error when tfm file is missing
* :ghpull:`4477`: OffsetBoxes now considered by tight_layout
* :ghpull:`4426`: FIX : hide ref counting violence unless needed
* :ghpull:`4408`: Fix path length limit
* :ghpull:`4510`: Try expanding user for _open_file_or_url.
* :ghpull:`4256`: Allow URL strings to be passed to imread
* :ghpull:`4508`: DOC: "Customizing matplotlib" should mention style sheets
* :ghpull:`4481`: Rasterize colorbar when it has many colors; closes #4480
* :ghpull:`4505`: Added reference to the Matplotlib-Venn package
* :ghpull:`4497`: Add link to new book
* :ghpull:`4494`: Returning the Poly3DCollection when calling bar3d
* :ghpull:`4452`: Fix for issue4372
* :ghpull:`4483`: BUG: Do not correct orientation of triangles returned by Qhull (master)
* :ghpull:`4479`: Problems with mpl.pyplot
* :ghpull:`4466`: Clipping for OffsetBoxes
* :ghpull:`4091`: ENH : add function to add displayhook
* :ghpull:`4471`: Minor improvements to the docstring of ``step``.
* :ghpull:`4393`: Fix Line2D function set_markersize so it doesn't fail if given a string ...
* :ghpull:`3989`: Allow Artists to show pixel data in cursor display
* :ghpull:`4459`: Downscale iterm2 backend example image in matplotlib toolkit docs.
* :ghpull:`4458`: Raise missing ValueError in transform_angles
* :ghpull:`3421`: make wx backends compatible with wxPython-Phoenix
* :ghpull:`4455`: Fix csv2rec for passing in both names and comments.
* :ghpull:`4342`: Implementation of Issue #3418 - Auto-wrapping text
* :ghpull:`4435`: MRG: use travis wheels for dependencies
* :ghpull:`4441`: Mentioned iTerm2 external backend in mpl_toolkit docs.
* :ghpull:`4439`: Import cbook.restrict_dict into backend_gdk
* :ghpull:`4436`: Travis, remove quite and verbose from nosetest flags
* :ghpull:`3834`: Remove lod
* :ghpull:`4014`: Fix Axes ``get_children`` order to match ``draw`` order
* :ghpull:`4427`: DOC : revert some documentation changes from #3772
* :ghpull:`3772`: Allow both linestyle definition "accents" and dash-patterns as linestyle
* :ghpull:`4411`: improvements to qt edit widget
* :ghpull:`4422`: FIX : turn path snapping off on 'o' marker path
* :ghpull:`4423`: TST : suppress all of the success messages
* :ghpull:`4401`: Fix #4333: Whitespace after sub/super cluster
* :ghpull:`4350`: Sets additional default values for axes and grid.
* :ghpull:`4377`: Memory leak for Cursor useblit=True on PySide/Python3
* :ghpull:`4399`: Enable travis tests on nightly python version (3.5 alpha)
* :ghpull:`4398`: Remove unnecessary pyplot import from axes_grid1
* :ghpull:`4395`: Travis docs fixes
* :ghpull:`4355`: TST : first pass updating to use travis containers
* :ghpull:`4358`: cbook.is_sequence_of_strings knows string objects
* :ghpull:`4388`: BUG : fix svg corner case
* :ghpull:`4381`: Legend rcparams doc tests
* :ghpull:`4370`: DOC: cp missing ``manage_xticks`` from ``bxp`` to ``boxplot`` docstring [backport]
* :ghpull:`4356`: STY: update example with preferred plt.subplots()
* :ghpull:`4361`: STY: update with use of plt.subplots(), other readability edits
* :ghpull:`4362`: fix rcParams legend.facecolor and edgecolor never being used
* :ghpull:`4357`: Change documentation of legend to reflect default upper-right
* :ghpull:`4193`: BUG/API : fix color validation
* :ghpull:`4345`: DOC : document exact freetype versions for tests
* :ghpull:`4259`: Implementation of Issue #4044. Added ScientificTable and ScientificCell subclasses.
* :ghpull:`4228`: BUG : fix non-uniform grids in pcolorfast
* :ghpull:`4352`: API/FIX : don't accept None for x or y in plot
* :ghpull:`4311`: BUG : bbox with any nan points can not overlap
* :ghpull:`4265`: DOC/API : StrMethodFormatter
* :ghpull:`4343`: decode the execution path string based file system encoding
* :ghpull:`4351`: STY: update example with preferred plt.subplots
* :ghpull:`4348`: Reorder the code in the draw() method of Line2D to fix issue 4338
* :ghpull:`4347`: DOC: delete the repetitive word 'the' in docstrings and comments
* :ghpull:`4298`: Prevent 'color' argument to eventplot from overriding 'colors' kwarg (fixes #4297)
* :ghpull:`4330`: Add tick_values method to the date Locators
* :ghpull:`4327`: Fix lw float cast
* :ghpull:`4266`: Add functionality to plot bar and barh with string labels (Implement #2516)
* :ghpull:`4225`: Provide way to disable Multi Cursor (Implement #2663)
* :ghpull:`4274`: Fix Angstrom issues
* :ghpull:`4286`: Added native dpi option for print_figure
* :ghpull:`4312`: Some fixes to qt 4 and 5 examples
* :ghpull:`4315`: added resize parameter to plot 2d-arrays using figimage
* :ghpull:`4317`: DOC: Note about pixel placement in imshow
* :ghpull:`3652`: MEP22: Navigation by events
* :ghpull:`4196`: DOC/TST : document and test negative width to bar
* :ghpull:`4291`: Add note about nbagg middle click button
* :ghpull:`4304`: Labels do not becomes color anymore in figure options panel for qt toolb...
* :ghpull:`4308`: fixes #2885, #3935, #3693, for hatched fill
* :ghpull:`4305`: Improve error message when freetype headers are not found using python3
* :ghpull:`4300`: Fix #4299: Add support for \left\Vert etc.
* :ghpull:`4293`: Massive MEP move
* :ghpull:`4119`: Fix ValueError being raised when plotting hist and hexbin on empty dataset (Fix #3886)
* :ghpull:`4249`: DOC : start to move MEP to docs
* :ghpull:`4278`: Replace use of str() with six.text_type() for Py2&3 compatibility [backport to color_overhaul]
* :ghpull:`4264`: Fix for unpickling polar plot issue #4068
* :ghpull:`4267`: correct rst syntax for code blocks
* :ghpull:`4263`: Py26 format
* :ghpull:`3060`: converted assert into exception
* :ghpull:`4261`: STY: update example with preferred plt.subplots
* :ghpull:`4250`: BUG: Quiver must copy U, V, C args so they can't change before draw()
* :ghpull:`4254`: Minor typo fix.
* :ghpull:`4248`: backend_pgf: don't clip filled paths (fixes #2885, #3935, #3693)
* :ghpull:`4236`: multiple canvas support for Windows
* :ghpull:`4244`: Fix #4239: Don't include scientific notation in path strings
* :ghpull:`4234`: Added mock, coverage and pep8 dep. Added pep8 options
* :ghpull:`4233`: Fix small option for docs build with sphinx 1.3
* :ghpull:`4221`: Suggest non-existing default filename (Implement #3608)
* :ghpull:`4231`: Fix #4230: Don't overflow buffer with sketch path.
* :ghpull:`4224`: DOC : update testing docs
* :ghpull:`4229`: Bug in ParseTuple for PyQuadContourGenerator_init
* :ghpull:`4226`: Refactoring: fewer variables, slightly faster code
* :ghpull:`4220`: Add rcParams to enable/disable minor ticks on axes separately issue #3024
* :ghpull:`4219`: Implemented new feature for Issue #2880
* :ghpull:`4197`: Generate path strings in C++ for PDF and PS
* :ghpull:`4113`: forcing weight to int
* :ghpull:`3985`: Widget and animation improvements
* :ghpull:`4203`: DOC: Colormap synonyms in examples, fix errors caused by removing duplicates
* :ghpull:`4118`: CallbackRegistry fix
* :ghpull:`4134`: Axis Labels with offset Spines
* :ghpull:`4173`: Fix for issue #3930:ConnectionPatch with fancy arrow of length zero produces no plot
* :ghpull:`4182`: colorbar: edit tick locations based on vmin and vmax; closes #4181
* :ghpull:`4213`: Fix test docs build on Travis with Sphinx 1.3.0 Edit (Lock travis on 1.2.3 for now)
* :ghpull:`4075`: backend_cairo: Clip drawn paths to context.clip_extents()
* :ghpull:`4209`: More updates on dead URLs
* :ghpull:`4206`: Fix C++ warnings from latest clang-analyzer
* :ghpull:`4204`: Updated links in INSTALL
* :ghpull:`4201`: Bug in text draw method when path_effects are set
* :ghpull:`4191`: Adding 'api_changes' and 'whats_new' docs for PR #4172
* :ghpull:`4198`: Plot: convert 'c' to 'color' immediately; closes #4162, #4157 [backport to color_overhaul]
* :ghpull:`4061`: Allow users to decide whether a vector graphics backend combines multiple images into a single image
* :ghpull:`4186`: Close clipped paths
* :ghpull:`4172`: axes.locator_params fails with LogLocator (and most Locator subclasses) #3658
* :ghpull:`3753`: Logit scale
* :ghpull:`4171`: set ``fig.waiting = false`` when image data is received [backport to color_overhaul]
* :ghpull:`4165`: Make _is_writable_dir more flexible to obscure failure modes
* :ghpull:`4177`: MNT : fix typo in no-lint flag
* :ghpull:`4149`: Clean up matplotlib.colors
* :ghpull:`4155`: Various pep8 fixes - specifically targeting files which are failing travis pep8 tests
* :ghpull:`4159`: ENH better error message for wrong fontsize
* :ghpull:`4176`: Fix Travis building of docs with IPython 3
* :ghpull:`3787`: Refactors axis3d.py to address issue #3610
* :ghpull:`4174`: ENH: speed-up mlab.contiguous_regions using numpy
* :ghpull:`4166`: Ensure the gc module is available during interpreter exit
* :ghpull:`4170`: Travis: Commit docs on top of first_commit
* :ghpull:`4164`: Fix Gtk3 Backend Source ID was not found
* :ghpull:`4158`: Ensure that MPL_REPO_DIR is set on Travis
* :ghpull:`4150`: Travis syntax
* :ghpull:`4151`: BUG: fix bad edits to travis.yml file
* :ghpull:`4148`: Fix mathtext image bounding box
* :ghpull:`4138`: TST: trigger travis OSX tests if Linux tests pass
* :ghpull:`3874`: New C++ contour code with corner_mask kwarg
* :ghpull:`4144`: Fix for issue 4142: Let show() exit the run loop after all windows are closed in a non-interactive session
* :ghpull:`4141`: Modify set_ticklabels() to fix counterintuitive behavior of set_ticklabels(get_ticklabels)#2246
* :ghpull:`3949`: PEP8: adjust some long lines
* :ghpull:`4130`: Qt event fix
* :ghpull:`3957`: Corrected cax attributes of ImageGrid axes
* :ghpull:`4129`: MNT : fix text-based text with new advance-width
* :ghpull:`4084`: Updated some broken and outdated links in testing docs [backport 1.4.2-doc]
* :ghpull:`4093`: Gtk.main_iteration takes no arguments
* :ghpull:`4031`: Font advance width
* :ghpull:`4079`: scatter: fix marker kwarg bug. Closes #4073, #3895.
* :ghpull:`4123`: Link fix in external ressources + 1 addition
* :ghpull:`4121`: added guiEvent to PickEvent
* :ghpull:`4116`: DOC: Correct docstring typo in subplot2grid
* :ghpull:`4100`: Add guiEvent handling for web backends
* :ghpull:`4104`: Pep8 fixes
* :ghpull:`4097`: Fix scale factor label issue #4043
* :ghpull:`4101`: Add guiEvent data to Qt backend
* :ghpull:`4096`: Fix minor typo in artist tutorial
* :ghpull:`4089`: Fix #4074: Bug introduced in 91725d8
* :ghpull:`4087`: Fix #4076. Change how result is stored in point_in_path/point_on_path.
* :ghpull:`4006`: Allow interrupts to be delivered once Python is fixed.
* :ghpull:`3994`: Add per-page pdf notes in PdfFile and PdfPages.
* :ghpull:`4080`: test_axes: remove extraneous "show()"
* :ghpull:`4081`: Pep8 version fixes
* :ghpull:`3992`: Code removal
* :ghpull:`4039`: added some fixes in order to use the result obtained from ``mpl._get_configdir()`` [backport to 1.4.2-doc]
* :ghpull:`4050`: Fix masked array handling
* :ghpull:`4051`: Correct FA 4 name of Download icon
* :ghpull:`4041`: Prevent Windows from opening command prompt (#4021) [backport to 1.4.x]
* :ghpull:`4032`: Disable context menu in webagg
* :ghpull:`4029`: Fix key modifier handling in Web backends [backport 1.4.x]
* :ghpull:`4035`: FIX: resizing a figure in webagg
* :ghpull:`4034`: quiver: always recalculate in draw(); improve docstring; closes #3709, #3817 [backport to 1.4.x]
* :ghpull:`4022`: More helpful error message for pgf backend
* :ghpull:`3997`: Change documented "Optional" ScaleBase method to "Required"
* :ghpull:`4009`: Fix name of variable in doc string
* :ghpull:`4005`: Try to fix mencoder tests. [backport to 1.4.x]
* :ghpull:`4004`: Provide arguments to mencoder in a more proper way
* :ghpull:`4002`: fix find_output_cell for IPython >= 3.0 [backport to 1.4.x]
* :ghpull:`3995`: Fix wx._core.PyAssertionError ... wxGetStockLabel(): invalid stock item ID
* :ghpull:`3974`: Add Save Tool to NbAgg Figure [backport to 1.4.x]
* :ghpull:`3676`: Fix #3647 [backport to 1.4.x]
* :ghpull:`3968`: Add Support for ``scroll_event`` in WebAgg and NbAgg [backport to 1.4.x]
* :ghpull:`3965`: Js fixes for key events + ipython notebooks
* :ghpull:`3993`: Fix stupid typo
* :ghpull:`3939`: Deploy development documentation from Travis [not ready to merge]
* :ghpull:`3988`: MNT : deprecate FigureCanvasBase.onHilite
* :ghpull:`3982`: pgf can not write to ``BytesIO`` [back port to 1.4.x]
* :ghpull:`3971`: Added "val" attribute to widgets.RadioButtons
* :ghpull:`3981`: Fixes for File Saving in Webagg
* :ghpull:`3978`: Fix clipping/zooming of inverted images
* :ghpull:`3970`: Add Figure Enter/Leave Events to Webagg
* :ghpull:`3969`: Connect the Resize Event for WebAgg
* :ghpull:`3967`: FIX: Webagg ``save_figure`` - Raise a Warning Instead of an Error
* :ghpull:`3916`: RF: always close old figure windows
* :ghpull:`3958`: Suppress some warnings in examples
* :ghpull:`3831`: Fix python3 issues in some examples
* :ghpull:`3612`: Minor tick fix [backport to 1.4.x]
* :ghpull:`3943`: Legend deprecate removal + cleanup
* :ghpull:`3955`: API : tighten validation on pivot in Quiver