Mrg2.0.x #8110
Merged
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
f6b4a32
FIX: Restore hatch color tracking edge color
tacaswell a58b0d1
DOC: add whats_new and api_changes entries for gc hatch methods
tacaswell c2daee2
Fix another datad[cmapname] that didn't exist in master.
QuLogic a8a769d
Fix grammar of Vega cmap deprecation message.
QuLogic fbe562c
Merge pull request #7986 from QuLogic/fix-cmap-deprecation
NelleV 98a9347
Merge pull request #7809 from lkilcher/marker_verts_bug
dstansby 8481bc5
Merge pull request #7997 from anntzer/image-tutorial-cmap
dstansby ab81f13
Test 2.0.x on released python 3.6
dstansby 936315c
Fix broken backported test
dstansby 6b2e116
PEP8
dstansby c4700bb
FIX: do not try to render empty images
tacaswell 6727dc6
Merge pull request #8004 from dstansby/backport-test-fix
NelleV 654b53b
Merge pull request #8000 from matplotlib/testing-3.6-1
QuLogic d9742a4
DOC: add missing docs for change to Figure.set_size_inches
tacaswell 493cb8a
Merge pull request #8008 from tacaswell/doc_document_set_size_inches_…
NelleV 48d0ddc
TST: fix test (turns out it is not a context manager)
tacaswell 3ae2ec9
FIX: numpy arrays are not 'truthy'
tacaswell 99de4a7
Bump font cache version.
QuLogic 9c031b9
Merge pull request #8025 from tacaswell/fix_log_subs
NelleV af37a47
Merge pull request #8029 from QuLogic/fontcache-bump
NelleV acda4ac
DOC: add missing word
tacaswell babdf73
MNT: minor tweak to checking size
tacaswell d63c95d
Merge pull request #7976 from tacaswell/fix_hatch_color
QuLogic 013fd3f
Merge pull request #8006 from tacaswell/fix_imshow_segfault
QuLogic c43f4fd
FIX: in errorbar discard any kwargs which have None value
tacaswell e5c3cba
Merge pull request #8033 from shaunwbell/patch-1
tacaswell 9b8b99b
Fixed a small mistake in matplotlibrc.template
rebot dfd1da5
Merge pull request #8037 from tacaswell/fix_errorbar_color_cycle
dopplershift f7865d3
Merge pull request #8042 from rebot/patch-1
tacaswell ac51372
Merge pull request #8070 from heath730/setup_cfg_update
phobson a347da9
Merge pull request #8084 from jacob-on-github/patch-2
dstansby 1cce7d3
Merge pull request #8086 from mitya57/master
tacaswell 276e1e9
API: Remove lw clipping for dash scaling and tweak pattern
tacaswell c5a59e3
TST: Tests which require updates due to previous commit
tacaswell 2558530
Merge pull request #8032 from tacaswell/api_lw_scale_clipping
afvincent 35996ce
Merge pull request #8094 from patniharshit/keepmiddle
dstansby 752d6c6
Merge remote-tracking branch 'matplotlib/v2.0.0-doc' into v2.0.x
tacaswell 47fdc32
Merge remote-tracking branch 'matplotlib/v2.0.x'
tacaswell
Jump to file
No files or symbols found.
+24
−0
api_changes.rst
doc/api/api_changes.rst
+19
−9
dflt_style_changes.rst
doc/users/dflt_style_changes.rst
+14
−0
whats_new.rst
doc/users/whats_new.rst
+1
−0
matshow.py
examples/pylab_examples/matshow.py
+2
−2
_cm.py
lib/matplotlib/_cm.py
+3
−0
_axes.py
lib/matplotlib/axes/_axes.py
+8
−0
backend_bases.py
lib/matplotlib/backend_bases.py
+5
−4
backend_pdf.py
lib/matplotlib/backends/backend_pdf.py
+12
−0
collections.py
lib/matplotlib/collections.py
+3
−6
figure.py
lib/matplotlib/figure.py
+1
−1
font_manager.py
lib/matplotlib/font_manager.py
+12
−0
image.py
lib/matplotlib/image.py
+3
−3
lines.py
lib/matplotlib/lines.py
+20
−1
patches.py
lib/matplotlib/patches.py
+3
−3
rcsetup.py
lib/matplotlib/rcsetup.py
+1
−1
scale.py
lib/matplotlib/scale.py
BIN
fancyarrow_dash.png
...seline_images/test_arrow_patches/fancyarrow_dash.png
BIN
clip_path_clipping.pdf
...s/baseline_images/test_artist/clip_path_clipping.pdf
BIN
clip_path_clipping.png
...s/baseline_images/test_artist/clip_path_clipping.png
+68
−68
clip_path_clipping.svg
...s/baseline_images/test_artist/clip_path_clipping.svg
BIN
hatching.pdf
...otlib/tests/baseline_images/test_artist/hatching.pdf
BIN
hatching.png
...otlib/tests/baseline_images/test_artist/hatching.png
+48
−30
hatching.svg
...otlib/tests/baseline_images/test_artist/hatching.svg
BIN
boxplot_rc_parameters.pdf
.../baseline_images/test_axes/boxplot_rc_parameters.pdf
BIN
boxplot_rc_parameters.png
.../baseline_images/test_axes/boxplot_rc_parameters.png
+150
−150
boxplot_rc_parameters.svg
.../baseline_images/test_axes/boxplot_rc_parameters.svg
BIN
bxp_custombox.png
...ib/tests/baseline_images/test_axes/bxp_custombox.png
BIN
bxp_customcap.png
...ib/tests/baseline_images/test_axes/bxp_customcap.png
BIN
bxp_custommedian.png
...tests/baseline_images/test_axes/bxp_custommedian.png
BIN
bxp_custompatchartist.png
.../baseline_images/test_axes/bxp_custompatchartist.png
BIN
bxp_withmean_line.png
...ests/baseline_images/test_axes/bxp_withmean_line.png
BIN
scaled_lines.pdf
...ib/tests/baseline_images/test_lines/scaled_lines.pdf
BIN
scaled_lines.png
...ib/tests/baseline_images/test_lines/scaled_lines.png
+77
−77
scaled_lines.svg
...ib/tests/baseline_images/test_lines/scaled_lines.svg
BIN
multi_color_hatch.pdf
...s/baseline_images/test_patches/multi_color_hatch.pdf
BIN
multi_color_hatch.png
...s/baseline_images/test_patches/multi_color_hatch.png
+469
−0
multi_color_hatch.svg
...s/baseline_images/test_patches/multi_color_hatch.svg
+15
−0
test_axes.py
lib/matplotlib/tests/test_axes.py
+10
−0
test_image.py
lib/matplotlib/tests/test_image.py
+1
−1
test_marker.py
lib/matplotlib/tests/test_marker.py
+18
−0
test_patches.py
lib/matplotlib/tests/test_patches.py
+7
−0
test_scale.py
lib/matplotlib/tests/test_scale.py
+4
−4
matplotlibrc.template
matplotlibrc.template
Oops, something went wrong.