8000 more ps and text API fixes · matplotlib/matplotlib@fff5af7 · GitHub
[go: up one dir, main page]

Skip to content
< 8000 /react-partial>

Commit fff5af7

Browse files
committed
more ps and text API fixes
svn path=/trunk/matplotlib/; revision=104
1 parent 478bcdb commit fff5af7

File tree

6 files changed

+40
-10
lines changed

6 files changed

+40
-10
lines changed

API_CHANGES

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,16 @@ API changes at 0.42
1717

1818
* Artist set_renderer and wash_brushes methods removed
1919

20+
* Moved Legend class from matplotlib.axes into matplotlib.legend
21+
22+
* Moved Tick, XTick, YTick, Axis, XAxis, YAxis from matplotlib.axes
23+
to matplotlib.axis
24+
25+
* moved process_text_args to matplotlib.text
26+
27+
* After getting Text handled in a backend independent fashion, the
28+
import process is much cleaner since there are no longer cyclic
29+
dependencies
2030

2131

2232

MANIFEST

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
API_CHANGES
12
CHANGELOG
23
GOALS
34
INSTALL
45
INTERACTIVE
6+
KNOWN_BUGS
57
LICENSE
68
MANIFEST.in
79
Makefile

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include CHANGELOG GOALS INSTALL INTERACTIVE LICENSE Makefile TODO MANIFEST.in
1+
include API_CHANGES CHANGELOG KNOWN_BUGS GOALS INSTALL INTERACTIVE LICENSE Makefile TODO MANIFEST.in
22
include examples/README
33
include examples/*.py
44
include examples/data/*

Makefile

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# Copyright (C) 2003 <jdhunter@ace.bsd.uchicago.edu>
33
# $Header$
44
# $Log$
5+
# Revision 1.12 2004/01/26 18:27:46 jdh2358
6+
# more ps and text API fixes
7+
#
58
# Revision 1.11 2003/11/19 16:45:09 jdh2358
69
# updated plotting commands list
710
#
@@ -39,14 +42,29 @@
3942
PYTHON = /usr/local/bin/python2.3
4043
PYDOC = /usr/local/bin/pydoc
4144
VERSION = `${PYTHON} setup.py --version`
42-
DISTFILES = INSTALL README TODO LICENSE CHANGELOG Makefile GOALS INTERACTIVE \
45+
46+
DISTFILES = API_CHANGES KNOWN_BUGS INSTALL README TODO LICENSE \
47+
CHANGELOG Makefile GOALS INTERACTIVE \
4348
MANIFEST.in matplotlib examples setup.py
44-
MODULES = matplotlib.afm matplotlib.axes matplotlib.artist \
45-
matplotlib.backend_bases matplotlib.cbook matplotlib.lines \
46-
matplotlib.patches matplotlib.matlab matplotlib.mlab \
47-
matplotlib.transforms \
48-
matplotlib.backends.backend_gtk matplotlib.backends.backend_gd \
49-
matplotlib.backends.backend_ps matplotlib.backends.backend_template \
49+
50+
MODULES = \
< 8000 /code>
51+
matplotlib.afm \
52+
matplotlib.axis \
53+
matplotlib.axes \
54+
matplotlib.artist \
55+
matplotlib.backend_bases \
56+
matplotlib.cbook \
57+
matplotlib.legend \
58+
matplotlib.lines \
59+
matplotlib.patches \
60+
matplotlib.matlab \
61+
matplotlib.mlab \
62+
matplotlib.text \
63+
matplotlib.transforms \
64+
matplotlib.backends.backend_gtk \
65+
matplotlib.backends.backend_gd \
66+
matplotlib.backends.backend_ps \
67+
matplotlib.backends.backend_template \
5068
matplotlib.backends.backend_wx
5169

5270
RELEASE = matplotlib-${VERSION}

examples/simple_plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
l = plot(t, s)
66

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

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.42c',
12+
version= '0.42e',
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