8000 relocated gtkgd ext mod · matplotlib/matplotlib@48043bc · GitHub
[go: up one dir, main page]

Skip to content

Commit 48043bc

Browse files
committed
relocated gtkgd ext mod
svn path=/trunk/matplotlib/; revision=138
1 parent 7d78ec6 commit 48043bc

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

MANIFEST

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ INSTALL
55
INTERACTIVE
66
KNOWN_BUGS
77
LICENSE
8-
MANIFEST
98
MANIFEST.in
109
Makefile
1110
README
@@ -58,6 +57,7 @@ examples/psd_demo.py
5857
examples/pstest.py
5958
examples/scatter_demo.py
6059
examples/scatter_demo2.py
60+
examples/scatter_marker.py
6161
examples/simple_plot.py
6262
examples/stock_demo.py
6363
examples/subplot_demo.py
@@ -158,6 +158,7 @@ matplotlib/table.py
158158
matplotlib/text.py
159159
matplotlib/transforms.py
160160
matplotlib/backends/__init__.py
161+
matplotlib/backends/backend_agg.py
161162
matplotlib/backends/backend_gd.py
162163
matplotlib/backends/backend_gtk.py
163164
matplotlib/backends/backend_gtkgd.py
@@ -166,9 +167,9 @@ matplotlib/backends/backend_ps.py
166167
matplotlib/backends/backend_template.py
167168
matplotlib/backends/backend_wx.py
168169
matplotlib/backends/ttf_font_manager.py
169-
src/_backend_agg.cpp
170170
test/README
171171
test/alignment_test.py
172+
test/backend_agg_test.py
172173
test/bar_test.py
173174
test/batchtest.py
174175
test/batchtest2.py
@@ -180,6 +181,7 @@ test/gd2gtk_test.py
180181
test/gtk2_test.py
181182
test/highres_test.py
182183
test/hist_test.py
184+
test/histogram_demo.py
183185
test/line_thickness.py
184186
test/lots_o_points.py
185187
test/manset.py
@@ -194,6 +196,7 @@ test/print_only.py
194196
test/rounding.py
195197
test/semilog_test.py
196198
test/specgram_demo.py
199+
test/subplot_demo.py
197200
test/table_demo.py
198201
test/table_demo3.py
199202
test/table_test.py

Makefile

Lines changed: 9 additions & 4 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.18 2004/02/11 00:07:44 jdh2358
6+
# relocated gtkgd ext mod
7+
#
58
# Revision 1.17 2004/01/30 21:33:19 jdh2358
69
# last changes for 0.50e
710
#
@@ -62,27 +65,29 @@ DISTFILES = API_CHANGES KNOWN_BUGS INSTALL README TODO LICENSE \
6265
CHANGELOG Makefile GOALS INTERACTIVE \
6366
MANIFEST.in matplotlib examples setup.py
6467

65-
MODULES = \
68+
MODULES = \
69+
matplotlib.afm \
6670
matplotlib.artist \
6771
matplotlib.axes \
6872
matplotlib.axis \
6973
matplotlib.backend_bases \
74+
matplotlib.backends.backend_agg \
7075
matplotlib.backends.backend_gd \
7176
matplotlib.backends.backend_gtk \
72-
matplotlib.backends.backend_gtkgd \
77+
matplotlib.backends.backend_gtkgd \
7378
matplotlib.backends.backend_ps \
7479
matplotlib.backends.backend_template \
80+
matplotlib.backends.backend_wx \
7581
matplotlib.cbook \
7682
matplotlib.figure \
7783
matplotlib.legend \
7884
matplotlib.lines \
7985
matplotlib.matlab \
8086
matplotlib.mlab \
8187
matplotlib.patches \
88+
matplotlib.table \
8289
matplotlib.text \
8390
matplotlib.transforms \
84-
matplotlib.afm \
85-
matplotlib.backends.backend_wx
8691

8792
RELEASE = matplotlib-${VERSION}
8893

examples/simple_plot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from matplotlib.matlab import *
22

3+
figure(1)
34
t = arange(0.0, 1.0, 0.02)
45
s = sin(2*2*pi*t)
56
plot(t, s, 'x')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
build_agg(ext_modules)
2020

2121
setup(name="matplotlib",
22-
version= '0.50i',
22+
version= '0.50j',
2323
description = "Matlab style python plotting package",
2424
author = "John D. Hunter",
2525
author_email="jdhunter@ace.bsd.uchicago.edu",

setupext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def add_gd_flags(module):
4141

4242

4343
def build_gtkgd(ext_modules):
44-
module = Extension('matplotlib._gtkgd',
44+
module = Extension('matplotlib.backends._gtkgd',
4545
['src/_gtkgd.c'],
4646
)
4747
add_pygtk_flags(module)

0 commit comments

Comments
 (0)
0