Skip to content

Commit 3f1a8dd

Browse files
committed
tagging for 0.99 release
svn path=/branches/v0_99_maint/; revision=7397
1 parent 8539b65 commit 3f1a8dd

File tree

5 files changed

+44
-16
lines changed

5 files changed

+44
-16
lines changed

Diff for: CHANGELOG

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
2009-08-06 Tagging the 0.99.0 release at svn r7395 - JDH
2+
3+
* fixed an alpha colormapping bug posted on sf 2832575
4+
5+
* fix typo in axes_divider.py. use nanmin, nanmax in angle_helper.py (patch by Christoph Gohlke)
6+
7+
* remove dup gui event in enter/leave events in gtk
8+
9+
* lots of fixes for os x binaries (Thanks Russell Owen)
10+
11+
* attach gtk events to mpl events -- fixes sf bug 2816580
12+
13+
* applied sf patch 2815064 (middle button events for wx) and patch 2818092 (resize events for wx)
14+
15+
* fixed boilerplate.py so it doesn't break the ReST docs.
16+
17+
* removed a couple of cases of mlab.load
18+
19+
* fixed rec2csv win32 file handle bug from sf patch 2831018
20+
21+
* added two examples from Josh Hemann: examples/pylab_examples/barchart_demo2.py and
22+
examples/pylab_examples/boxplot_demo2.py
23+
24+
* handled sf bugs 2831556 and 2830525; better bar error messages and backend driver configs
25+
26+
* added miktex win32 patch from sf patch 2820194
27+
28+
* apply sf patches 2830233 and 2823885 for osx setup and 64 bit; thanks Michiel
129

230
2009-08-03 Fixed boilerplate.py so it doesn't break the ReST docs. - JKS
331

Diff for: lib/matplotlib/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"""
9090
from __future__ import generators
9191

92-
__version__ = '0.99.0.rc2'
92+
__version__ = '0.99.0'
9393
__revision__ = '$Revision$'
9494
__date__ = '$Date$'
9595

Diff for: release/osx/Makefile

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
PYVERSION=2.5
1+
PYVERSION=2.6
22
PYTHON=python${PYVERSION}
33
SRCDIR=${PWD}
44
ZLIBVERSION=1.2.3
55
PNGVERSION=1.2.33
66
FREETYPEVERSION=2.3.7
7-
MPLVERSION=0.99.0.rc2
7+
MPLVERSION=0.99.0
88
BDISTMPKGVERSION=0.4.4
99
MPLSRC=matplotlib-${MPLVERSION}
1010
MACOSX_DEPLOYMENT_TARGET=10.4
@@ -28,7 +28,7 @@ clean:
2828
zlib-${ZLIBVERSION} libpng-${PNGVERSION} freetype-${FREETYPEVERSION} \
2929
matplotlib-${MPLVERSION} *~
3030

31-
fetch_deps:
31+
fetch:
3232
wget http://www.zlib.net/zlib-${ZLIBVERSION}.tar.gz &&\
3333
wget http://internap.dl.sourceforge.net/sourceforge/libpng/libpng-${PNGVERSION}.tar.bz2 &&\
3434
wget http://download.savannah.gnu.org/releases/freetype/freetype-${FREETYPEVERSION}.tar.bz2&&\
@@ -77,21 +77,20 @@ freetype: zlib
7777
cp objs/.libs/libfreetype.a . &&\
7878
unset MACOSX_DEPLOYMENT_TARGET
7979

80-
dependencies:
80+
deps:
8181
make zlib png freetype
8282

8383
installers:
8484
unset PKG_CONFIG_PATH &&\
8585
tar xvfz matplotlib-${MPLVERSION}.tar.gz && \
8686
cd ${MPLSRC} && \
8787
rm -rf build && \
88-
cp ../data/setup.cfg . &&\
88+
cp ../data/setup.cfg ../data/ReadMe.txt . &&\
8989
export CFLAGS=${CFLAGS} &&\
9090
export LDFLAGS=${LDFLAGS} &&\
91-
/Library/Frameworks/Python.framework/Versions/${PYVERSION}/bin/bdist_mpkg &&\
92-
${PYTHON} setupegg.py bdist_egg &&\
93-
cd dist && \
94-
zip -ro matplotlib-${MPLVERSION}-py${PYVERSION}-macosx10.5_mpkg.zip matplotlib-${MPLVERSION}-py${PYVERSION}-macosx10.5.mpkg
91+
/Library/Frameworks/Python.framework/Versions/${PYVERSION}/bin/bdist_mpkg --readme=ReadMe.txt &&\
92+
hdiutil create -srcdir dist/matplotlib-${MPLVERSION}-py${PYVERSION}-macosx10.5.mpkg dist/matplotlib-${MPLVERSION}-py${PYVERSION}-macosx10.5.dmg &&\
93+
${PYTHON} setupegg.py bdist_egg
9594

9695
upload:
9796
rm -rf upload &&\
@@ -102,7 +101,7 @@ upload:
102101
scp upload/* jdh2358@frs.sourceforge.net:uploads/
103102

104103
all:
105-
make clean fetch_deps dependencies installers upload
104+
make clean fetch deps installers upload
106105

107106

108107

Diff for: release/osx/README.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,16 @@ How to build
4848
* First fetch all the dependencies and patch bdist_mpkg for OSX 10.5.
4949
You can do this automatically in one step with::
5050

51-
make fetch_deps
51+
make fetch
5252

53-
* install the patched bdist_mpkg, that the fetch_deps step just created::
53+
* install the patched bdist_mpkg, that the fetch step just created::
5454

5555
cd bdist_mpkg-0.4.4
5656
sudo python setup.py install
5757

5858
* build the dependencies::
5959

60-
make dependencies
60+
make deps
6161

6262
* copy over the latest mpl *.tar.gz tarball to this directory, update
6363
the MPLVERSION in the Makefile::
@@ -77,11 +77,11 @@ Build the dependencies::
7777

7878
cd release/osx/
7979
unset PKG_CONFIG_PATH
80-
make fetch_deps
80+
make fetch
8181
cd bdist_mpkg-0.4.4
8282
sudo python setup.py install
8383
cd ..
84-
make dependencies
84+
make deps
8585

8686
Build the mpl sdist::
8787

Diff for: release/osx/data/ReadMe.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Find file: ~/Desktop/

0 commit comments

Comments
 (0)