diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2018-06-22 23:06:43 +0200 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2018-06-22 23:06:43 +0200 |
commit | a8fad89d28b4fe74597832a1fe023155e26076c9 (patch) | |
tree | 39ed85162775c7091778846ccef859a078b3e2fd /setupinfo.py | |
parent | 11c14e0ff10b089b614754d572e8d08bbd05fb67 (diff) | |
download | python-lxml-a8fad89d28b4fe74597832a1fe023155e26076c9.tar.gz |
Include "lxml.sax" in compiled modules.
Diffstat (limited to 'setupinfo.py')
-rw-r--r-- | setupinfo.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/setupinfo.py b/setupinfo.py index 0dc14918..f787e955 100644 --- a/setupinfo.py +++ b/setupinfo.py @@ -14,7 +14,13 @@ except ImportError: CYTHON_INSTALLED = False EXT_MODULES = ["lxml.etree", "lxml.objectify"] -COMPILED_MODULES = ["lxml.builder", "lxml._elementpath", "lxml.html.diff", "lxml.html.clean"] +COMPILED_MODULES = [ + "lxml.builder", + "lxml._elementpath", + "lxml.html.diff", + "lxml.html.clean", + "lxml.sax", +] HEADER_FILES = ['etree.h', 'etree_api.h'] if hasattr(sys, 'pypy_version_info') or ( |