[ttLib] get 'ttLibVersion' from fontTools.version.__version__, but only write MAJOR.MINOR

otherwise it risks changing too often... ;)
This commit is contained in:
Cosimo Lupo 2016-09-27 00:28:01 +01:00
parent 113e1bd0df
commit 5dabba6699

View File

@ -250,9 +250,13 @@ class TTFont(object):
list of tables to dump. The 'skipTables' argument may be a list of tables
to skip, but only when the 'tables' argument is false.
"""
from fontTools import version
from fontTools.version import __version__
from fontTools.misc import xmlWriter
# only write the MAJOR.MINOR version in the 'ttLibVersion' attribute of
# TTX files' root element (without PATCH or .dev suffixes)
version = ".".join(__version__.split('.')[:2])
if quiet is not None:
deprecateArgument("quiet", "configure logging instead")