Skip to content

Commit cb6af9d

Browse files
committed
debug
1 parent 93fe7cb commit cb6af9d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
env:
118118
PYXMLSEC_LIBXML2_VERSION: 2.14.3
119119
PYXMLSEC_LIBXSLT_VERSION: 1.1.43
120-
PYXMLSEC_XMLSEC1_VERSION: 1.3.6
120+
PYXMLSEC_XMLSEC1_VERSION: 1.3.7
121121
PYXMLSEC_OPENSSL_VERSION: 3.5.0
122122

123123
steps:

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -610,6 +610,11 @@ def prepare_static_build(self, build_platform):
610610
"--disable-shared",
611611
"--without-lzma",
612612
"--without-python",
613+
*(
614+
["--with-legacy-features"]
615+
if Version(self.libxml2_version) >= Version("1.3.7")
616+
else []
617+
),
613618
"--with-iconv={}".format(self.prefix_dir),
614619
"--with-zlib={}".format(self.prefix_dir),
615620
host_arg,

0 commit comments

Comments
 (0)