Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d156f32

Browse files
committed
added image files to cvs
svn path=/trunk/matplotlib/; revision=188
1 parent 9f8a807 commit d156f32

5 files changed

Lines changed: 743 additions & 8 deletions

File tree

DEVNOTES

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ http://matplotlib.sourceforge.net
2828

2929
0) Turn off all the build flags
3030

31-
0) when building the win installer, make sure you specify
32-
--install-script postinstall.py
33-
3431
0) Run examples/batch_figs.py w/o errors; run the backend specific
3532
demos (object_picker, anim , embedding*)
3633

@@ -40,15 +37,14 @@ http://matplotlib.sourceforge.net
4037
> rfr -f savefig -r '#savefig' *.py
4138
> rfr -f '##savefig' -r '#savefig' *.py
4239

43-
2) edit license.html.template and matplotlib.__init__ to the correct version number
40+
2) edit __init__.py, setup.py license.html.template to the correct version number
4441
local> clearbak
4542
local> make htmldocs
4643
local> scp htdocs/site.tar.gz [email protected]:/home/groups/m/ma/matplotlib/htdocs/
4744
local> ssh -l jdh2358 shell.sf.net
4845
sf> cd /home/groups/m/ma/matplotlib/htdocs
4946
sf> tar xvfz site.tar.gz
5047

51-
3) edit setup.py to the correct version number
5248
> make release
5349

5450
4) anon ftp the tar.gz and exe file to SF

examples/embedding_in_tk.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
from matplotlib.numerix import arange, sin, pi
2-
31
import matplotlib
42
matplotlib.use('TkAgg')
53

4+
from matplotlib.numerix import arange, sin, pi
65
from matplotlib.axes import Subplot
76
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
87
from matplotlib.figure import Figure

examples/simple_plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
figure(1)
44
t = arange(0.0, 1.0, 0.01)
55
s = sin(2*2*pi*t)
6-
plot(t, s, antialiased=False)
6+
plot(t, s)
77

88
xlabel('time (s)')
99
ylabel('voltage (mV)')

0 commit comments

Comments
 (0)