Skip to content

Commit b90b5c9

Browse files
committed
sync to 0.53.1
svn path=/trunk/matplotlib/; revision=256
1 parent 86a2473 commit b90b5c9

File tree

5 files changed

+27
-18
lines changed

5 files changed

+27
-18
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
New entries should be added at the top
22
------------------------------------------------------------
3+
2004-04-26 Fixed errorbar autoscale problem.
4+
5+
2004-04-22 Fixed copy tick attribute bug, fixed singular datalim
6+
ticker bug; fixed mathtext fontsize interactive bug. - JDH
37

48
2004-04-21 Added calls to draw_if_interactive to axes(), legend(),
59
and pcolor(). Deleted duplicate pcolor(). - JTM

LICENSE/LICENSE

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
LICENSE AGREEMENT FOR MATPLOTLIB 0.53
1+
LICENSE AGREEMENT FOR MATPLOTLIB 0.53.1
22
--------------------------------------
33

44
1. This LICENSE AGREEMENT is between the John D. Hunter ("JDH"), and
@@ -9,30 +9,30 @@ documentation.
99
2. Subject to the terms and conditions of this License Agreement, JDH
1010
hereby grants Licensee a nonexclusive, royalty-free, world-wide
1111
license to reproduce, analyze, test, perform and/or display publicly,
12-
prepare derivative works, distribute, and otherwise use matplotlib 0.53
12+
prepare derivative works, distribute, and otherwise use matplotlib 0.53.1
1313
alone or in any derivative version, provided, however, that JDH's
1414
License Agreement and JDH's notice of copyright, i.e., "Copyright (c)
1515
2002, 2003 John D. Hunter; All Rights Reserved" are retained in
16-
matplotlib 0.53 alone or in any derivative version prepared by
16+
matplotlib 0.53.1 alone or in any derivative version prepared by
1717
Licensee.
1818

1919
3. In the event Licensee prepares a derivative work that is based on
20-
or incorporates matplotlib 0.53 or any part thereof, and wants to make
20+
or incorporates matplotlib 0.53.1 or any part thereof, and wants to make
2121
the derivative work available to others as provided herein, then
2222
Licensee hereby agrees to include in any such work a brief summary of
23-
the changes made to matplotlib 0.53.
23+
the changes made to matplotlib 0.53.1.
2424

25-
4. JDH is making matplotlib 0.53 available to Licensee on an "AS IS"
25+
4. JDH is making matplotlib 0.53.1 available to Licensee on an "AS IS"
2626
basis. JDH MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
2727
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, JDH MAKES NO AND
2828
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
29-
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB 0.53 WILL NOT
29+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB 0.53.1 WILL NOT
3030
INFRINGE ANY THIRD PARTY RIGHTS.
3131

3232
5. JDH SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF
33-
MATPLOTLIB 0.53 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES
33+
MATPLOTLIB 0.53.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES
3434
OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING
35-
MATPLOTLIB 0.53, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE
35+
MATPLOTLIB 0.53.1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE
3636
POSSIBILITY THEREOF.
3737

3838
6. This License Agreement will automatically terminate upon a material
@@ -44,6 +44,6 @@ Licensee. This License Agreement does not grant permission to use JDH
4444
trademarks or trade name in a trademark sense to endorse or promote
4545
products or services of Licensee, or any third party.
4646

47-
8. By copying, installing or otherwise using matplotlib 0.53, Licensee
47+
8. By copying, installing or otherwise using matplotlib 0.53.1, Licensee
4848
agrees to be bound by the terms and conditions of this License
4949
Agreement.

TODO

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,6 @@
268268

269269
-- DONE add figure legend
270270

271-
-- fix newlines across backends
272-
273271
-- DONE - support partial window expose redraws in agg
274272

275273
-- fix datalim problem with aspect preserved for image backend
@@ -298,7 +296,9 @@
298296

299297
-- fix the sqrt mathtext bug revealed by Flavio's example
300298

301-
-- fix the parser for sqrt, etc..
299+
-- fix the parser for sqrt,
300+
301+
-- fix the parser for over/under subscripts
302302

303303
-- add \/ for TeX
304304

@@ -323,11 +323,18 @@
323323

324324
-- fromstring examples need byte order in darwin
325325

326-
-- PS offset
326+
-- PS not centering properly
327327

328328
-- DONE gary's win crash
329329

330330
-- get a standard way to show windows w/o entering mainloop
331331

332332
-- wx tooltips
333333

334+
-- close wx return to interpreter
335+
336+
-- allow sharing of locators
337+
338+
-- check out epydoc
339+
340+
-- fix color on errorbar lines

examples/date_demo2.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
mondays = WeekdayLocator(MONDAY) # every monday
2525
months = MonthLocator(1) # every month
26-
monthsFmt = DateFormatter('%b\n%d')
26+
monthsFmt = DateFormatter('%b %d')
2727

2828

2929

@@ -46,7 +46,5 @@
4646
labels = ax.get_xticklabels()
4747
set(labels, 'rotation', 'vertical')
4848

49-
ticklines = ax.get_xticklines()
50-
set(ticklines, 'color', 'r')
5149
grid(True)
5250
show()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
build_image(ext_modules, packages, BUILD_IMAGE)
9898

9999
setup(name="matplotlib",
100-
version= '0.53.1a',
100+
version= '0.53.1',
101101
description = "Matlab style python plotting package",
102102
author = "John D. Hunter",
103103
author_email="jdhunter@ace.bsd.uchicago.edu",

0 commit comments

Comments
 (0)