File tree Expand file tree Collapse file tree 7 files changed +6
-6
lines changed Expand file tree Collapse file tree 7 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ Configuration
27
27
the backend has to be altered. Either in your python session with::
28
28
29
29
import matplotlib
30
- matplotlib.use('module://matplotlib- sixel')
30
+ matplotlib.use('module://sixel')
31
31
32
32
or in your ``matplotlibrc `` file::
33
33
34
- backend: module://matplotlib- sixel
34
+ backend: module://sixel
35
35
36
36
To get the colors in the demo above, you can copy
37
37
`this matplotlibrc <./matplotlibrc >`_ and make it your own.
Original file line number Diff line number Diff line change 15
15
## PS PDF SVG Template
16
16
## You can also deploy your own backend outside of matplotlib by referring to
17
17
## the module name (which must be in the PYTHONPATH) as 'module://my_backend'.
18
- backend: module://matplotlib- sixel
18
+ backend: module://sixel
19
19
20
20
## The port to use for the web server in the WebAgg backend.
21
21
#webagg.port: 8988
Original file line number Diff line number Diff line change 2
2
from distutils .core import setup
3
3
4
4
setup (name = 'matplotlib-sixel' ,
5
- version = '0.0.1 ' ,
5
+ version = '0.0.2 ' ,
6
6
description = 'Matplotlib backend for showing sixel graphics' ,
7
7
author = 'Jonathan Feinberg' ,
8
8
author_email = 'jonathf@gmail.com' ,
9
9
url = 'https://github.com/jonathf/matplotlib-sixel' ,
10
- packages = ['matplotlib- sixel' ])
10
+ packages = ['sixel' ])
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 2
2
3
3
import matplotlib
4
4
5
- matplotlib .use ('module://matplotlib- sixel' )
5
+ matplotlib .use ('module://sixel' )
6
6
7
7
from pylab import *
8
8
You can’t perform that action at this time.
0 commit comments