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

Skip to content

Commit c8900d0

Browse files
committed
fixed interactive2 and several small bugs
svn path=/trunk/matplotlib/; revision=33
1 parent 2d20c75 commit c8900d0

4 files changed

Lines changed: 18 additions & 4 deletions

File tree

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,7 @@
104104

105105
2003-09-30 Added legend
106106

107+
2003-10-01 Fixed bug when colors are specified with rgb tuple or hex
108+
string.
109+
110+

Makefile

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# Copyright (C) 2003 <[email protected]>
33
# $Header$
44
# $Log$
5+
# Revision 1.7 2003/10/18 17:54:26 jdh2358
6+
# fixed interactive2 and several small bugs
7+
#
58
# Revision 1.6 2003/09/30 16:15:33 jdh2358
69
# added legend
710
#
@@ -21,8 +24,8 @@
2124
# adding Makefile, releases, docs
2225
#
2326

24-
PYTHON = /usr/bin/python2.2
25-
PYDOC = /usr/bin/pydoc
27+
PYTHON = /usr/local/bin/python2.3
28+
PYDOC = /usr/local/bin/pydoc
2629
VERSION = `${PYTHON} setup.py --version`
2730
DISTFILES = INSTALL README TODO LICENSE CHANGELOG Makefile GOALS INTERACTIVE \
2831
MANIFEST.in matplotlib examples setup.py
@@ -41,9 +44,16 @@ clean:
4144
find matplotlib -name "*.png" | xargs rm -f;
4245

4346
htmldocs:
47+
rm -rf htdocs/matplotlib;\
48+
cp -a matplotlib htdocs/;\
49+
cp examples/*.py htdocs/examples;\
4450
rm -f docs/*.html;\
4551
${PYDOC} -w ${MODULES};\
4652
mv *.html docs/
53+
cd htdocs;\
54+
${PYTHON} process_docs.py;\
55+
${PYTHON} convert.py;\
56+
tar cvfz site.tar.gz *.html screenshots tut examples
4757

4858
release: ${DISTFILES}
4959
rm -rf ${RELEASE};\

examples/legend_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Thanks to Charles Twardy
1+
# Thanks to Charles Twardy for this example
22
from matplotlib.matlab import *
33

44
a = arange(0,3,.02)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
data.extend(glob.glob('fonts/ttf/*.ttf'))
99

1010
setup(name="matplotlib",
11-
version= '0.29',
11+
version= '0.29.1',
1212
description = "Matlab style python plotting package",
1313
author = "John D. Hunter",
1414
author_email="[email protected]",

0 commit comments

Comments
 (0)