Skip to content

Commit

Permalink
Merge pull request #50 from autonomio/fix_matplotlib_old_rcparams
Browse files Browse the repository at this point in the history
Fix matplotlib old rcparams
  • Loading branch information
mikkokotila authored Nov 20, 2020
2 parents f6e061d + ff73dfc commit d0efc30
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions astetik/style/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,7 @@ def styles(dpi):
'savefig.directory': '~',
'savefig.dpi': 'figure',
'savefig.edgecolor': 'white',
'savefig.facecolor': 'white',
'savefig.format': 'png',
'savefig.frameon': False,
'savefig.jpeg_quality': 95,
'savefig.orientation': 'portrait',
'savefig.pad_inches': 0.1,
Expand Down
1 change: 0 additions & 1 deletion astetik/style/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def _header(palette,
if style == 'astetik':
rcParams['figure.facecolor'] = 'white'
rcParams['axes.facecolor'] = 'white'
rcParams['savefig.facecolor'] = 'white'

style_dic = styles(dpi)
for key in style_dic.keys():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
URL = 'http://mikkokotila.com'
LICENSE = 'MIT'
DOWNLOAD_URL = 'https://github.com/mikkokotila/pretty'
VERSION = '1.11.0'
VERSION = '1.11.1'

try:
from setuptools import setup
Expand Down

0 comments on commit d0efc30

Please sign in to comment.