Skip to content

Commit 0b4e787

Browse files
committed
Fix FreeType runtime version check
Unfortunately, this was missed in matplotlib#31407.
1 parent 17b1f31 commit 0b4e787

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/matplotlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ def _val_or_rc(val, *rc_names):
13581358
def _init_tests():
13591359
# The version of FreeType to install locally for running the tests. This must match
13601360
# the value in `subprojects/freetype2.wrap`.
1361-
LOCAL_FREETYPE_VERSION = '2.14.1'
1361+
LOCAL_FREETYPE_VERSION = '2.14.3'
13621362

13631363
from matplotlib import ft2font
13641364
if (ft2font.__freetype_version__ != LOCAL_FREETYPE_VERSION or

0 commit comments

Comments
 (0)