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

Skip to content

Commit a0f22b2

Browse files
committed
just making sure I can sync
svn path=/trunk/matplotlib/; revision=647
1 parent f3971e7 commit a0f22b2

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

lib/matplotlib/backend_bases.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
from numerix import array, sqrt, pi, log, asarray, ones, Float
1313
from patches import Rectangle
1414
from transforms import lbwh_to_bbox
15+
from matplotlib import verbose
1516

1617
class RendererBase:
1718

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# numarray. You can build the image module with either Numeric or
1515
# numarray or both. By default, matplotlib will build support for
1616
# whatever array packages you have installed.
17-
BUILD_IMAGE = 1
17+
BUILD_IMAGE = 0
1818

1919
# Build the antigrain geometry toolkit. Agg makes heavy use of
2020
# templates, so it probably requires a fairly recent compiler to build
@@ -23,14 +23,14 @@
2323
BUILD_AGG = 1
2424

2525
# Render Agg to the GTK canvas
26-
#BUILD_GTKAGG = 0
27-
BUILD_GTKAGG = 'auto'
26+
BUILD_GTKAGG = 0
27+
#BUILD_GTKAGG = 'auto'
2828

2929
# build TK GUI with Agg renderer ; requires Tkinter Python extension
3030
# and Tk includes
3131
# Use False or 0 if you don't want to build
32-
#BUILD_TKAGG = 0
33-
BUILD_TKAGG = 'auto'
32+
BUILD_TKAGG = 0
33+
#BUILD_TKAGG = 'auto'
3434

3535
# build a small extension to manage the focus on win32 platforms.
3636
#BUILD_WINDOWING = 0
@@ -44,7 +44,6 @@
4444

4545
## You shouldn't need to customize below this point
4646

47-
4847
from distutils.core import setup
4948
import sys,os
5049
import glob
@@ -136,6 +135,7 @@
136135
BUILD_AGG = 1
137136
build_tkagg(ext_modules, packages)
138137

138+
139139
if BUILD_AGG:
140140
build_agg(ext_modules, packages)
141141

0 commit comments

Comments
 (0)