File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 9
9
@echo " Tagging v$( VERSION) ..."
10
10
git tag v$(VERSION )
11
11
git push --tags
12
+ curl -H " Authorization: token ` cat $( HOME) /.github-access-token` " -d ' {"tag_name": "$(VERSION)"}' https://api.github.com/repos/nschloe/tikzplotlib/releases
12
13
13
14
upload : setup.py
14
15
@if [ " $( shell git rev-parse --abbrev-ref HEAD) " != " master" ]; then exit 1; fi
Original file line number Diff line number Diff line change @@ -38,11 +38,8 @@ def draw_legend(data, obj):
38
38
position = [bbox_center [0 ], bbox_center [1 ]]
39
39
40
40
legend_style = [
41
- # These are the mpl default setting for legends, see
42
- # <https://matplotlib.org/3.1.1/api/legend_api.html#matplotlib.legend.Legend>.
43
- # Keep an eye on <https://github.com/matplotlib/matplotlib/issues/15764> to see
44
- # if we can get() the opacity from the legend object.
45
- "fill opacity=0.8" ,
41
+ # https://github.com/matplotlib/matplotlib/issues/15764#issuecomment-557823370
42
+ "fill opacity={}" .format (obj .get_frame ().get_alpha ()),
46
43
"draw opacity=1" ,
47
44
"text opacity=1" ,
48
45
]
You can’t perform that action at this time.
0 commit comments