10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8b1850 commit c9426abCopy full SHA for c9426ab
DEVNOTES
@@ -26,6 +26,9 @@ http://matplotlib.sourceforge.net
26
27
### Doing a release
28
29
+0) when building the win installer, comment out the import ttfquery in
30
+ build_fonttools
31
+
32
0) Run examples/batch_figs.py w/o errors; run the backend specific
33
demos (object_picker, anim , embedding*)
34
setupext.py
@@ -145,6 +145,11 @@ def build_agg(ext_modules, packages):
145
146
def build_fonttools(ext_modules, packages):
147
148
+ # don't build it if we have it
149
+ try: import ttfquery
150
+ except ImportError: pass
151
+ else: return
152
153
global BUILT_FONTTOOLS
154
155
if BUILT_FONTTOOLS: return # only build it if you you haven't already
0 commit comments