File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -1501,7 +1501,7 @@ def _init_tests():
1501
1501
1502
1502
# The version of FreeType to install locally for running the
1503
1503
# tests. This must match the value in `setupext.py`
1504
- LOCAL_FREETYPE_VERSION = '2.5.2 '
1504
+ LOCAL_FREETYPE_VERSION = '2.6.1 '
1505
1505
1506
1506
from matplotlib import ft2font
1507
1507
if (ft2font .__freetype_version__ != LOCAL_FREETYPE_VERSION or
Original file line number Diff line number Diff line change 23
23
# This is the version of FreeType to use when building a local
24
24
# version. It must match the value in
25
25
# lib/matplotlib.__init__.py
26
- LOCAL_FREETYPE_VERSION = '2.5.2 '
26
+ LOCAL_FREETYPE_VERSION = '2.6.1 '
27
27
# md5 hash of the freetype tarball
28
- LOCAL_FREETYPE_HASH = '004320381043d275c4e28bbacf05a1b7 '
28
+ LOCAL_FREETYPE_HASH = '348e667d728c597360e4a87c16556597 '
29
29
30
30
if sys .platform != 'win32' :
31
31
if sys .version_info [0 ] < 3 :
@@ -1003,9 +1003,8 @@ def do_custom_build(self):
1003
1003
subprocess .check_call (
1004
1004
['tar' , 'zxf' , tarball ], cwd = 'build' )
1005
1005
subprocess .check_call (
1006
- [cflags +
1007
- './configure --without-zlib --without-bzip2 --without-png' ],
1008
- shell = True , cwd = src_path )
1006
+ [cflags + './configure --with-zlib=no --with-bzip2=no '
1007
+ '--with-png=no --with-harfbuzz=no' ], shell = True , cwd = src_path )
1009
1008
subprocess .check_call (
1010
1009
[cflags + 'make' ], shell = True , cwd = src_path )
1011
1010
You can’t perform that action at this time.
0 commit comments