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 8396451 commit ca5324cCopy full SHA for ca5324c
lib/matplotlib/__init__.py
@@ -1539,7 +1539,15 @@ def verify_test_dependencies():
1539
warnings.warn(
1540
"matplotlib is not built with the correct FreeType version to run "
1541
"tests. Set local_freetype=True in setup.cfg and rebuild. "
1542
- "Expect many image comparison failures below.")
+ "Expect many image comparison failures below. "
1543
+ "Expected freetype version {0}. "
1544
+ "Found freetype version {1}. "
1545
+ "Freetype build type is {2}local".format(
1546
+ ft2font.__freetype_version__,
1547
+ LOCAL_FREETYPE_VERSION,
1548
+ "" if ft2font.__freetype_build_type__ == 'local' else "not "
1549
+ )
1550
1551
1552
try:
1553
import nose
0 commit comments