This repository was archived by the owner on Jan 28, 2019. It is now read-only.
v2.3.0
- The
lxml
andsingledispatch
requirements are now optional. When not present, the built-inxml.etree.ElementTree
library is used. To install ufoLib with lxml support you can do like this:pip install ufoLib[lxml]
. - Added new
ufoLib.plistlib
implementation that works the same way on both python 2 and python 3, and matches the python3'splistlib
API (#160). - Added new
ufoLib.etree
module that exports the same ElementTree interface using eitherlxml
orxml.etree
(built-in) as backends, depending on the availability of former (#161). - glifLib: use double quotes in XML declaration like previous ufoLib versions (#159).
- Set up test coverage and upload coverage report to codecov.io.