Skip to content

Commit a6c632d

Browse files
committed
rename module: matplotlib-sixel -> sixel
1 parent 5f0612b commit a6c632d

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ Configuration
2727
the backend has to be altered. Either in your python session with::
2828

2929
import matplotlib
30-
matplotlib.use('module://matplotlib-sixel')
30+
matplotlib.use('module://sixel')
3131

3232
or in your ``matplotlibrc`` file::
3333

34-
backend: module://matplotlib-sixel
34+
backend: module://sixel
3535

3636
To get the colors in the demo above, you can copy
3737
`this matplotlibrc <./matplotlibrc>`_ and make it your own.

demo.png

15.4 KB
Loading

matplotlibrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
## PS PDF SVG Template
1616
## You can also deploy your own backend outside of matplotlib by referring to
1717
## the module name (which must be in the PYTHONPATH) as 'module://my_backend'.
18-
backend: module://matplotlib-sixel
18+
backend: module://sixel
1919

2020
## The port to use for the web server in the WebAgg backend.
2121
#webagg.port: 8988

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
from distutils.core import setup
33

44
setup(name='matplotlib-sixel',
5-
version='0.0.1',
5+
version='0.0.2',
66
description='Matplotlib backend for showing sixel graphics',
77
author='Jonathan Feinberg',
88
author_email='jonathf@gmail.com',
99
url='https://github.com/jonathf/matplotlib-sixel',
10-
packages=['matplotlib-sixel'])
10+
packages=['sixel'])
File renamed without changes.
File renamed without changes.

test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import matplotlib
44

5-
matplotlib.use('module://matplotlib-sixel')
5+
matplotlib.use('module://sixel')
66

77
from pylab import *
88

0 commit comments

Comments
 (0)