-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathgithub_stats.txt
More file actions
2775 lines (2764 loc) · 157 KB
/
github_stats.txt
File metadata and controls
2775 lines (2764 loc) · 157 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/09/08 (tag: v1.4.0)
These lists are automatically generated, and may be incomplete or contain duplicates.
We closed 1189 issues and merged 1214 pull requests.
The following 360 authors contributed 6335 commits.
* AbdealiJK
* Acanthostega
* Adrien Chardon
* Adrien F. Vincent
* Adrien VINCENT
* Alan Du
* Alberto
* alex
* Alex Rothberg
* Alexander Taylor
* Alexei Colin
* Ali Mehdi
* Ali Uneri
* Alistair Muldal
* Allan Haldane
* AmyTeegarden
* Andreas Hilboll
* Andreas Mayer
* Andy Zhu
* Anton Akhmerov
* Antony Lee
* Arie
* Ariel Hernán Curiale
* Arnaud Gardelein
* Arpad Horvath
* basharovV
* bcongdon
* Behram Mistree
* Ben Congdon
* Ben Root
* Benjamin Berg
* Benjamin Congdon
* Benjamin Reedlunn
* BHT
* Brett Cannon
* Brian McLaughlin
* Bruno Beltran
* Cameron Davidson-Pilon
* cammil
* Casey Webster
* Casper van der Wel
* caspervdw
* chadawagner
* chebee7i
* Chen Karako
* Chris Holdgraf
* Christian Brueffer
* Christoph Gohlke
* Cimarron Mittelsteadt
* CJ Carey
* curiale
* DaCoEx
* Damon McDougall
* danhickstein
* DanHickstein
* Danhickstein
* David
* David Haberthür
* David Kua
* David Stansby
* deeenes
* Devashish Deshpande
* Diego Mora Cespedes
* dlmccaffrey
* domspad
* Dora Fraeman
* dsquareindia
* Duncan Macleod
* Dylan Evans
* e-q
* E. G. Patrick Bos
* Elena Glassman
* Elias Pipping
* Elliott Sales de Andrade
* elpres
* Elvis Stansvik
* 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
* Francoise Provencher
* Frank Yu
* François Magimel
* frenchwr
* fvgoto
* Gaute Hope
* gcallah
* gepcel
* Giovanni
* gluap
* Gregory Ashton
* Gregory R. Lee
* Grillard
* hamogu
* hannah
* Hans Dembinski
* Hans Moritz Günther
* Hassan Kibirige
* Hastings Greer
* Heiko Oberdiek
* Henning Pohl
* Herbert Kruitbosch
* Holger Peters
* hugadams
* Ian Thomas
* Ilia Kurenkov
* ImSoErgodic
* insertroar
* Ioannis Filippidis
* Isaac Schwabacher
* Isaac Slavitt
* Ismo Toijala
* itziakos
* J. Goutin
* Jacob McDonald
* Jae-Joon Lee
* Jaime Fernandez
* jaimefrio
* Jake VanderPlas
* James A. Bednar
* James Pallister
* James R. Evans
* Jan Schlüter
* Jan Schulz
* Jan-willem De Bleser
* Jascha Ulrich
* Jason King
* Jason Liw Yan Chong
* Jason Miller
* Jason Zheng
* 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
* jonchar
* Jorrit Wronski
* Josef Heinen
* Joseph Fox-Rabinovitz
* Joseph Jon Booker
* Jouni K. Seppänen
* jowr
* Julian Mehne
* Julian V. Modesto
* Julien Lhermitte
* Julien Schueller
* Julien-Charles Lévesque
* Katy Huff
* Kevin Keating
* khyox
* kikocorreoso
* Kimmo Palin
* Kjartan Myrdal
* klaus
* klonuo
* Konrad Förstner
* Konstantin Tretyakov
* Kristen M. Thyng
* Kristen Thyng
* Kyle Bridgemohansingh
* Kyler Brown
* Leeonadoh
* leeonadoh
* Lennart Fricke
* Leo Singer
* Levi Kilcher
* lichri12
* LindyBalboa
* Lori J
* Loïc Estève
* Luis Pedro Coelho
* Mad Physicist
* Magnus Nord
* Majid alDosari
* maluethi
* mamrehn
* 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
* Matthias Bussonnier
* Maximilian Albert
* Maximilian Maahn
* mbyt
* mdehoon
* mdipierro
* Mellissa Cross
* Michael Droettboom
* Michael Sarahan
* Michiel de Hoon
* Min RK
* Minty Zhang
* MirandaXM
* mlub
* mrkrd
* muahah
* Muhammad Mehdi
* myyc
* Nathan Goldbaum
* Nathan Musoke
* Neil Crighton
* Nelle Varoquaux
* Niall Robinson
* Nicholas Devenish
* nickystringer
* Nico Schlömer
* Nicolas P. Rougier
* Nicolas Tessore
* 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
* Paul G
* Paul Ganssle
* Paul Hobson
* Paul Kirow
* Paul Romano
* Pete Bachant
* Pete Peterson
* Peter Mortensen
* Peter St. John
* Peter Würtz
* Phil Elson
* Pierre de Buyl
* productivememberofsociety666
* Przemysław Dąbek
* pupssman
* Qingpeng "Q.P." Zhang
* Ramiro Gómez
* Randy Olson
* rasbt
* Remi Rampin
* Robin Dunn
* Robin Wilson
* rsnape
* ryan
* Ryan May
* Ryan Morshead
* Ryan Nelson
* ryanbelt
* RyanPan
* s9w
* Samuel St-Jean
* Sander
* scls19fr
* Scott Howard
* Scott Lawrence
* scott-vsi
* sdementen
* Sebastián Vanrell
* Simon Gibbons
* Skelpdar
* Slav
* sohero
* Spencer McIntyre
* Stanley, Simon
* Stefan Lehmann
* Stefan Pfenninger
* Stefan van der Walt
* Stephen Horst
* Sterling Smith
* Steven Silvester
* story645
* Stuart Mumford
* switham
* Tamas Gal
* Terrence J. Katzenbaer
* The Gitter Badger
* Thomas A Caswell
* Thomas Hisch
* Thomas Lake
* Thomas Robitaille
* Thomas Spura
* Thorsten Liebig
* Till Stensitzki
* tmdavison
* Tobias Megies
* Tomas Kazmar
* tomoemon
* Trish Gillett-Kawamoto
* u55
* ugurthemaster
* Ulrich Dobramysl
* ultra-andy
* Umair Idris
* Vadim Markovtsev
* Valentin Schmidt
* Víctor Zabalza
* Warren Weckesser
* Wen Li
* Wendell Smith
* Werner F Bruhin
* wernerfb
* Wieland Hoffmann
* William Manley
* Xiaowen Tang
* xuanyuansen
* Xufeng Wang
* Yu Feng
* Yunfei Yang
* Yuri D'Elia
* Yuval Langer
* Zair Mubashar
* Zbigniew Jędrzejewski-Szmek
GitHub issues and pull requests:
Pull Requests (1214):
* :ghpull:`7037`: DOC change axhspan to numpydoc format
* :ghpull:`7047`: DOC - SpanSelector widget documentation
* :ghpull:`7049`: [MRG] Documentated dependencies to the doc and remove unecessary dependencies.
* :ghpull:`7063`: Tweek tol for test_hist_steplog to fix tests on appveyor
* :ghpull:`7055`: FIX: testings.nose was not installed
* :ghpull:`7058`: Minor animation fixes
* :ghpull:`7057`: FIX: Removed financial demos that stalled because of yahoo requests
* :ghpull:`7052`: Uncaught exns are fatal for PyQt5, so catch them.
* :ghpull:`7048`: FIX: remove unused variable
* :ghpull:`7042`: FIX: ticks filtered by Axis, not in Tick.draw
* :ghpull:`7026`: Merge 2.x to master
* :ghpull:`6988`: Text box widget, take over of PR5375
* :ghpull:`6957`: DOC: clearing out some instances of using pylab in the docs
* :ghpull:`7012`: Don't blacklist test_usetex using pytest
* :ghpull:`7011`: TST: Fixed ``skip_if_command_unavailable`` decorator problem
* :ghpull:`6918`: enable previously leftout test_usetex
* :ghpull:`7006`: FIX: sphinx 1.4.0 details
* :ghpull:`6900`: Enh: break website screenshot banner into 4 pieces and introduce a responsive layout
* :ghpull:`6997`: FIX: slow plots of pandas objects (Second try)
* :ghpull:`6792`: PGF Backend: Support interpolation='none'
* :ghpull:`6983`: Catch invalid interactive switch to log scale.
* :ghpull:`6491`: Don't warn in Collections.contains if picker is not numlike.
* :ghpull:`6978`: Add link to O'Reilly video course covering matplotlib
* :ghpull:`6930`: BUG: PcolorImage handles non-contiguous arrays, provides data readout
* :ghpull:`6889`: support for updating axis ticks for categorical data
* :ghpull:`6974`: Fixed wrong expression
* :ghpull:`6730`: Add Py.test testing framework support
* :ghpull:`6904`: Use edgecolor rather than linewidth to control edge display.
* :ghpull:`6919`: Rework MaxNLocator, eliminating infinite loop; closes #6849
* :ghpull:`6955`: Add parameter checks to DayLocator initiator
* :ghpull:`5161`: [WIP] Proposed change to default log scale tick formatting
* :ghpull:`6875`: Add keymap (default: G) to toggle minor grid.
* :ghpull:`6920`: Prepare for cross-framework test suite
* :ghpull:`6944`: Restore cbook.report_memory, which was deleted in d063dee.
* :ghpull:`6961`: remove extra "a"
* :ghpull:`6947`: Changed error message. Issue #6933
* :ghpull:`6923`: Make sure nose is only imported when needed
* :ghpull:`6851`: Do not restrict coverage to ``matplotlib`` module only
* :ghpull:`6938`: Image interpolation selector in Qt figure options.
* :ghpull:`6787`: Python3.5 dictview support
* :ghpull:`6407`: adding default toggled state for toggle tools
* :ghpull:`6898`: Fix read mode when loading cached AFM fonts
* :ghpull:`6892`: Don't force anncoords to fig coords upon dragging.
* :ghpull:`6895`: Prevent forced alpha in figureoptions.
* :ghpull:`6877`: Fix Path deepcopy signature
* :ghpull:`6822`: Use travis native cache
* :ghpull:`6821`: Break reference cycle Line2D <-> Line2D._lineFunc.
* :ghpull:`6879`: Delete font cache in one of the configurations
* :ghpull:`6832`: Fix for ylabel title in example tex_unicode_demo.py
* :ghpull:`6848`: ``test_tinypages``: pytest compatible module level setup
* :ghpull:`6881`: add doi to bibtex entry for Hunter (2007)
* :ghpull:`6842`: Clarify Axes.hexbin *extent* docstring
* :ghpull:`6861`: Update ggplot URLs
* :ghpull:`6878`: DOC: use venv instead of virtualenv on python 3
* :ghpull:`6837`: Fix Normalize(<signed integer array>).
* :ghpull:`6874`: Update bachelors_degree_by_gender example.
* :ghpull:`6867`: Mark ``make_all_2d_testfuncs`` as not a test
* :ghpull:`6854`: Fix for PyQt5.7 support.
* :ghpull:`6862`: Change default doc image format to png and pdf
* :ghpull:`6819`: Add mpl_toolkits to coveragerc.
* :ghpull:`6840`: Fixed broken ``test_pickle.test_complete`` test
* :ghpull:`6841`: DOC: Switch to OO code style & ensure fixed y-range in ``psd_demo3``
* :ghpull:`6843`: DOC: Fix ``psd_demo_complex`` similarly to ``psd_demo3``
* :ghpull:`6829`: Tick label rotation via ``set_tick_params``
* :ghpull:`6799`: Allow creating annotation arrows w/ default props.
* :ghpull:`6262`: Properly handle UTC conversion in date2num.
* :ghpull:`6777`: Raise lock timeout as actual exception
* :ghpull:`6817`: DOC: Fix a few typos and formulations
* :ghpull:`6826`: Clarify doc for "norm" kwarg to ``imshow``.
* :ghpull:`6807`: Deprecate ``{get,set}_cursorprops``.
* :ghpull:`6811`: Add xkcd font as one of the options
* :ghpull:`6815`: Rename tests in ``test_mlab.py``
* :ghpull:`6808`: Don't forget to disconnect callbacks for dragging.
* :ghpull:`6803`: better freetype version checking
* :ghpull:`6778`: Added contribute information to readme
* :ghpull:`6786`: 2.0 Examples fixes. See #6762
* :ghpull:`6774`: Appveyor: use newer conda packages and only run all tests on one platform
* :ghpull:`6779`: Fix tutorial pyplot scales (issue #6775)
* :ghpull:`6768`: Takeover #6535
* :ghpull:`6763`: Invalidate test cache on gs/inkscape version
* :ghpull:`6765`: Get more rcParams for 3d
* :ghpull:`6764`: Support returning polylines from to_polygons
* :ghpull:`6760`: DOC: clean up of demo_annotation_box.py
* :ghpull:`6735`: Added missing side tick rcParams
* :ghpull:`6761`: Fixed warnings catching and counting with ``warnings.catch_warnings``
* :ghpull:`5349`: Add a Gitter chat badge to README.rst
* :ghpull:`6755`: PEP: fix minor formatting issues
* :ghpull:`6699`: Warn if MPLBACKEND is invalid.
* :ghpull:`6754`: Fixed error handling in ``ImageComparisonTest.setup_class``
* :ghpull:`6734`: register IPython's eventloop integration in plt.install_repl_displayhook
* :ghpull:`6745`: DOC: typo in broken_axis pylab example
* :ghpull:`6747`: Also output the actual error on svg backend tests using subprocess
* :ghpull:`6744`: Add workaround for failures due to newer miktex
* :ghpull:`6741`: Missing ``cleanup`` decorator in ``test_subplots.test_exceptions``
* :ghpull:`6736`: doc: fix unescaped backslash
* :ghpull:`6733`: Mergev2.x to master
* :ghpull:`6729`: Fix crash if byte-compiled level 2
* :ghpull:`6575`: setup.py: Recommend installation command for pkgs
* :ghpull:`6645`: Fix containment and subslice optim. for steps.
* :ghpull:`6619`: Hide "inner" {x,y}labels in label_outer too.
* :ghpull:`6639`: Simplify get_legend_handler method
* :ghpull:`6694`: Improve Line2D and MarkerStyle instantiation
* :ghpull:`6692`: Remove explicit children invalidation in update_position method
* :ghpull:`6703`: DOC: explain behavior of notches beyond quartiles
* :ghpull:`6707`: Call ``gc.collect`` after each test only if the user asks for it
* :ghpull:`6711`: Added support for ``mgs`` to Ghostscript dependecy checker
* :ghpull:`6700`: Don't convert vmin, vmax to floats.
* :ghpull:`6714`: fixed font_manager.is_opentype_cff_font()
* :ghpull:`6701`: Colours like 'XeYYYY' don't get recognised properly if X, Y's are numbers
* :ghpull:`6512`: Add computer modern font family
* :ghpull:`6383`: Qt editor alpha
* :ghpull:`6381`: Fix canonical name for "None" linestyle.
* :ghpull:`6689`: Str Categorical Axis Support
* :ghpull:`6686`: Merged _bool from axis into cbook._string_to_bool
* :ghpull:`6683`: New entry in ``.mailmap``
* :ghpull:`6520`: Appveyor overhaul
* :ghpull:`6697`: Fixed path caching bug in ``Path.unit_regular_star``
* :ghpull:`6688`: DOC: fix radial increase of size & OO style in polar_scatter_demo
* :ghpull:`6681`: Fix #6680 (minor typo in IdentityTransform docstring)
* :ghpull:`6676`: Fixed AppVeyor building script
* :ghpull:`6672`: Fix example of streamplot ``start_points`` option
* :ghpull:`6601`: BF: protect against locale in sphinext text
* :ghpull:`6662`: [MRG+1] adding from_list to custom cmap tutorial
* :ghpull:`6666`: Guard against too-large figures
* :ghpull:`6659`: Fix image alpha
* :ghpull:`6642`: Fix rectangle selector release bug
* :ghpull:`6652`: Minor doc updates.
* :ghpull:`6653`: DOC: Incorrect rendering of dashes
* :ghpull:`6648`: adding a new color and editing an existing color in fivethirtyeight.mplstyle
* :ghpull:`6548`: Fix typo.
* :ghpull:`6628`: fix the swab bug to compile on solaris system
* :ghpull:`6622`: colors: ensure masked array data is an ndarray
* :ghpull:`6625`: DOC: Found a typo.
* :ghpull:`6614`: Fix docstring for PickEvent.
* :ghpull:`6554`: Update mpl_toolkits.gtktools.
* :ghpull:`6564`: Cleanup for drawstyles.
* :ghpull:`6577`: Fix mlab.rec_join.
* :ghpull:`6596`: Added a new example to create error boxes using a PatchCollection
* :ghpull:`2370`: Implement draw_markers in the cairo backend.
* :ghpull:`6599`: Drop conditional import of figureoptions.
* :ghpull:`6573`: Some general cleanups
* :ghpull:`6568`: Add OSX to travis tests
* :ghpull:`6600`: Typo: markeredgewith -> markeredgewidth
* :ghpull:`6526`: ttconv: Also replace carriage return with spaces.
* :ghpull:`6530`: Update make.py
* :ghpull:`6405`: ToolManager/Tools adding methods to set figure after initialization
* :ghpull:`6553`: Drop prettyplotlib from the list of toolkits.
* :ghpull:`6557`: Merge 2.x to master
* :ghpull:`5626`: New toolbar icons
* :ghpull:`6555`: Fix docstrings for ``warn_deprecated``.
* :ghpull:`6544`: Fix typo in margins handling.
* :ghpull:`6014`: Patch for issue #6009
* :ghpull:`6517`: Fix conversion of string grays with alpha.
* :ghpull:`6522`: DOC: made sure boxplot demos share y-axes
* :ghpull:`6529`: TST Remove plt.show() from test_axes.test_dash_offset
* :ghpull:`6519`: Fix FigureCanvasAgg.print_raw(...)
* :ghpull:`6481`: Default boxplot style rebase
* :ghpull:`6504`: Patch issue 6035 rebase
* :ghpull:`5593`: ENH: errorbar color cycle clean up
* :ghpull:`6497`: Line2D._path obeys drawstyle.
* :ghpull:`6487`: Added docstring to scatter_with_legend.py [MEP12]
* :ghpull:`6485`: Barchart demo example clean up [MEP 12]
* :ghpull:`6472`: Install all dependencies from pypi
* :ghpull:`6482`: Skip test broken with numpy 1.11
* :ghpull:`6475`: Do not turn on interactive mode on in example script
* :ghpull:`6442`: MRG: loading TCL / Tk symbols dynamically
* :ghpull:`6467`: ENH: add unified seaborn style sheet
* :ghpull:`6465`: updated boxplot figure
* :ghpull:`6462`: CI: Use Miniconda already installed on AppVeyor.
* :ghpull:`6456`: FIX: unbreak master after 2.x merge
* :ghpull:`6445`: Offset text colored by labelcolor param
* :ghpull:`6417`: Showraise gtk gtk3
* :ghpull:`6423`: TST: splitlines in rec2txt test
* :ghpull:`6427`: Output pdf dicts in deterministic order
* :ghpull:`6431`: Merge from v2.x
* :ghpull:`6433`: Make the frameworkpython script compatible with Python 3
* :ghpull:`6358`: Stackplot weighted_wiggle zero-area fix
* :ghpull:`6382`: New color conversion machinery.
* :ghpull:`6372`: DOC: add whats_new for qt configuration editor.
* :ghpull:`6415`: removing unused DialogLineprops from gtk3
* :ghpull:`6390`: Use xkcd: prefix to avoid color name clashes.
* :ghpull:`6397`: key events handler return value to True to stop propagation
* :ghpull:`6402`: more explicit message for missing image
* :ghpull:`5785`: Better choice of offset-text.
* :ghpull:`6302`: FigureCanvasQT key auto repeat
* :ghpull:`6334`: ENH: webagg: Handle ioloop shutdown correctly
* :ghpull:`5267`: AutoMinorLocator and and logarithmic axis
* :ghpull:`6386`: Minor improvements concerning #6353 and #6357
* :ghpull:`6388`: Remove wrongly commited test.txt
* :ghpull:`6379`: Install basemap from git trying to fix build issue with docs
* :ghpull:`6369`: Update demo_floating_axes.py with comments
* :ghpull:`6377`: Remove unused variable in GeoAxes class
* :ghpull:`6373`: Remove misspelled and unused variable in GeoAxes class
* :ghpull:`6376`: Update index.rst - add Windrose as third party tool
* :ghpull:`6371`: Set size of static figure to match widget on hidp displays
* :ghpull:`6370`: Restore webagg backend following the merge of widget nbagg backend
* :ghpull:`6366`: Sort default labels numerically in Qt editor.
* :ghpull:`6367`: Remove stray nonascii char from nbagg
* :ghpull:`5754`: IPython Widget
* :ghpull:`6146`: ticker.LinearLocator view_limits algorithm improvement closes #6142
* :ghpull:`6287`: ENH: add axisbelow option 'line', make it the default
* :ghpull:`6339`: Fix #6335: Queue boxes to update
* :ghpull:`6347`: Allow setting image clims in Qt options editor.
* :ghpull:`6354`: Update events handling documentation to work with Python 3.
* :ghpull:`6356`: Merge 2.x to master
* :ghpull:`6304`: Updating animation file writer to allow keywork arguments when using ``with`` construct
* :ghpull:`6328`: Add default scatter marker option to rcParams
* :ghpull:`6342`: Remove shebang lines from all examples. [MEP12]
* :ghpull:`6337`: Add a 'useMathText' param to method 'ticklabel_format'
* :ghpull:`6346`: Avoid duplicate cmap in image options.
* :ghpull:`6253`: MAINT: Updates to formatters in ``matplotlib.ticker``
* :ghpull:`6291`: Color cycle handling
* :ghpull:`6340`: BLD: make minimum cycler version 0.10.0
* :ghpull:`6322`: Typo fixes and wording modifications (minor)
* :ghpull:`6319`: Add PyUpSet as extension
* :ghpull:`6314`: Only render markers on a line when markersize > 0
* :ghpull:`6303`: DOC Clean up on about half the Mplot3d examples
* :ghpull:`6311`: Seaborn sheets
* :ghpull:`6300`: Remake of #6286
* :ghpull:`6297`: removed duplicate word in Choosing Colormaps documentation
* :ghpull:`6200`: Tick vertical alignment
* :ghpull:`6203`: Fix #5998: Support fallback font correctly
* :ghpull:`6198`: Make hatch linewidth an rcParam
* :ghpull:`6275`: Fix cycler validation
* :ghpull:`6283`: Use ``figure.stale`` instead of internal member in macosx
* :ghpull:`6247`: DOC: Clarify fillbetween_x example.
* :ghpull:`6251`: ENH: Added a ``PercentFormatter`` class to ``matplotlib.ticker``
* :ghpull:`6267`: MNT: trap inappropriate use of color kwarg in scatter; closes #6266
* :ghpull:`6249`: Adjust test tolerance to pass for me on OSX
* :ghpull:`6263`: TST: skip broken test
* :ghpull:`6260`: Bug fix and general touch ups for hist3d_demo example (#1702)
* :ghpull:`6239`: Clean warnings in examples
* :ghpull:`6170`: getter for ticks for colorbar
* :ghpull:`6246`: Merge v2.x into master
* :ghpull:`6238`: Fix sphinx 1.4.0 issues
* :ghpull:`6241`: Force Qt validator to use C locale.
* :ghpull:`6234`: Limit Sphinx to 1.3.6 for the time being
* :ghpull:`6178`: Use Agg for rendering in the Mac OSX backend
* :ghpull:`6232`: MNT: use stdlib tools in allow_rasterization
* :ghpull:`6211`: A method added to Colormap classes to reverse the colormap
* :ghpull:`6205`: Use io.BytesIO instead of io.StringIO in examples
* :ghpull:`6229`: Add a locator to AutoDateFormatters example code
* :ghpull:`6222`: ENH: Added ``file`` keyword to ``setp`` to redirect output
* :ghpull:`6217`: BUG: Made ``setp`` accept arbitrary iterables
* :ghpull:`6154`: Some small cleanups based on Quantified code
* :ghpull:`4446`: Label outer offset text
* :ghpull:`6218`: DOC: fix typo
* :ghpull:`6202`: Fix #6136: Don't hardcode default scatter size
* :ghpull:`6195`: Documentation bug #6180
* :ghpull:`6194`: Documentation bug fix: #5517
* :ghpull:`6011`: Fix issue #6003
* :ghpull:`6179`: Issue #6105: Adds targetfig parameter to the subplot2grid function
* :ghpull:`6185`: Fix to csv2rec bug for review
* :ghpull:`6192`: More precise choice of axes limits.
* :ghpull:`6176`: DOC: Updated docs for rc_context
* :ghpull:`5617`: Legend tuple handler improve
* :ghpull:`6188`: Merge 2x into master
* :ghpull:`6158`: Fix: pandas series of strings
* :ghpull:`6156`: Bug: Fixed regression of ``drawstyle=None``
* :ghpull:`5343`: Boxplot stats w/ equal quartiles
* :ghpull:`6132`: Don't check if in range if the caller passed norm
* :ghpull:`6091`: Fix for issue 5575 along with testing
* :ghpull:`6123`: docstring added
* :ghpull:`6145`: BUG: Allowing unknown drawstyles
* :ghpull:`6148`: Fix: Pandas indexing Error in collections
* :ghpull:`6140`: clarified color argument in scatter
* :ghpull:`6137`: Fixed outdated link to thirdpartypackages, and simplified the page
* :ghpull:`6095`: Bring back the module level 'backend'
* :ghpull:`6124`: Fix about dialog on Qt 5
* :ghpull:`6110`: Fixes matplotlib/matplotlib#1235
* :ghpull:`6122`: MNT: improve image array argument checking in to_rgba. Closes #2499.
* :ghpull:`6047`: bug fix related #5479
* :ghpull:`6119`: added comment on "usetex=False" to ainde debugging when latex not ava…
* :ghpull:`6073`: fixed bug 6028
* :ghpull:`6116`: CI: try explicitly including msvc_runtime
* :ghpull:`6100`: Update INSTALL
* :ghpull:`6099`: Fix #6069. Handle image masks correctly
* :ghpull:`6079`: Fixed Issue 4346
* :ghpull:`6102`: Update installing_faq.rst
* :ghpull:`6101`: Update INSTALL
* :ghpull:`6074`: Fixes an error in the documentation, linestyle is dash_dot and should be dashdot
* :ghpull:`6068`: Text class: changed __str__ method and added __repr__ method
* :ghpull:`6018`: Added get_status() function to the CheckButtons widget
* :ghpull:`6013`: Mnt cleanup pylab setup
* :ghpull:`5984`: Suggestion for Rasterization to docs pgf-backend
* :ghpull:`5911`: Fix #5895: Properly clip MOVETO commands
* :ghpull:`6039`: DOC: added missing import to navigation_toolbar.rst
* :ghpull:`6036`: BUG: fix ListedColormap._resample, hence plt.get_cmap; closes #6025
* :ghpull:`6029`: TST: Always use / in URLs for visual results.
* :ghpull:`6022`: Make @cleanup *really* support generative tests.
* :ghpull:`6024`: Add Issue template with some guidelines
* :ghpull:`5718`: Rewrite of image infrastructure
* :ghpull:`3973`: WIP: BUG: Convert qualitative colormaps to ListedColormap
* :ghpull:`6005`: FIX: do not short-cut all white-space strings
* :ghpull:`5727`: Refresh pgf baseline images.
* :ghpull:`5975`: ENH: add kwarg normalization function to cbook
* :ghpull:`5931`: use ``locale.getpreferredencoding()`` to prevent OS X locale issues
* :ghpull:`5972`: add support for PySide2, #5971
* :ghpull:`5625`: DOC: add FAQ about np.datetime64
* :ghpull:`5131`: fix #4854: set default numpoints of legend entries to 1
* :ghpull:`5926`: Fix #5917. New dash patterns. Scale dashes by lw
* :ghpull:`5976`: Lock calls to latex in texmanager
* :ghpull:`5628`: Reset the available animation movie writer on rcParam change
* :ghpull:`5951`: tkagg: raise each new window; partially addresses #596
* :ghpull:`5958`: TST: add a test for tilde in tempfile for the PS backend
* :ghpull:`5957`: Win: add mgs as a name for ghostscript executable
* :ghpull:`5928`: fix for latex call on PS backend (Issue #5895)
* :ghpull:`5954`: Fix issues with getting tempdir when unknown uid
* :ghpull:`5922`: Fixes for Windows test failures on appveyor
* :ghpull:`5953`: Fix typos in Axes.boxplot and Axes.bxp docstrings
* :ghpull:`5947`: Fix #5944: Fix PNG writing from notebook backend
* :ghpull:`5936`: Merge 2x to master
* :ghpull:`5629`: WIP: more windows build and CI changes
* :ghpull:`5914`: Make barbs draw correctly (Fixes #5803)
* :ghpull:`5906`: Merge v2x to master
* :ghpull:`5809`: Support generative tests in @cleanup.
* :ghpull:`5910`: Fix reading/writing from urllib.request objects
* :ghpull:`5882`: mathtext: Fix comma behaviour at start of string
* :ghpull:`5880`: mathtext: Fix bugs in conversion of apostrophes to primes
* :ghpull:`5872`: Fix issue with Sphinx 1.3.4
* :ghpull:`5894`: Boxplot concept figure update
* :ghpull:`5870`: Docs / examples fixes.
* :ghpull:`5892`: Fix gridspec.Gridspec: check ratios for consistency with rows and columns
* :ghpull:`5901`: Fixes incorrect ipython sourcecode
* :ghpull:`5893`: Show significant digits by default in QLineEdit.
* :ghpull:`5881`: Allow build children to run
* :ghpull:`5886`: Revert "Build the docs with python 3.4 which should fix the Traitlets…
* :ghpull:`5877`: DOC: added blurb about external mpl-proscale package
* :ghpull:`5879`: Build the docs with python 3.4 which should fix the Traitlets/IPython…
* :ghpull:`5871`: Fix sized delimiters for regular-sized mathtext (#5863)
* :ghpull:`5852`: FIX: create _dashSeq and _dashOfset before use
* :ghpull:`5832`: Rewordings for normalizations docs.
* :ghpull:`5849`: Update setupext.py to solve issue #5846
* :ghpull:`5853`: Typo: fix some typos in patches.FancyArrowPatch
* :ghpull:`5842`: Allow image comparison outside tests module
* :ghpull:`5845`: V2.x merge to master
* :ghpull:`5813`: mathtext: no space after comma in brackets
* :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