8000 added EPS save · matplotlib/matplotlib@bb53532 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit bb53532

Browse files
committed
added EPS save
svn path=/trunk/matplotlib/; revision=105
1 parent fff5af7 commit bb53532

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

MANIFEST

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,11 @@ matplotlib/_matlab_helpers.py
140140
matplotlib/afm.py
141141
matplotlib/artist.py
142142
matplotlib/axes.py
143+
matplotlib/axis.py
143144
matplotlib/backend_bases.py
144145
matplotlib/cbook.py
145146
matplotlib/colormap.py
147+
matplotlib/legend.py
146148
matplotlib/lines.py
147149
matplotlib/matlab.py
148150
matplotlib/mlab.py

examples/simple_plot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
l = plot(t, s 8000 )
66

77
xlabel('time (s)')
8-
ylabel('voltage (mV)', rotation=0)
8+
ylabel('voltage (mV)')
99
title('About as simple as it gets, folks')
1010
#grid(True)
1111
#set(gca(), 'xticks', (0,.2,.7))
12-
savefig('test2')
12+
savefig('test2.eps')
1313
show()

examples/subplot_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ def f(t):
1919
xlabel('time (s)')
2020
ylabel('Undamped')
2121

22-
#savefig('subplot_demo')
22+
savefig('subplot_demo.eps')
2323
show()
2424

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
data.extend(glob.glob('images/*.xpm'))
1010

1111
setup(name="matplotlib",
12-
version= '0.42e',
12+
version= '0.42',
1313
description = "Matlab style python plotting package",
1414
author = "John D. Hunter",
1515
author_email="jdhunter@ace.bsd.uchicago.edu",

0 commit comments

Comments
 (0)
0