@@ -36,28 +36,28 @@ def triplet(self) -> str:
3636class LibXmlsecDependencyBuilder :
3737 WINDOWS_LIBS_DOWNLOAD_RELEASE_URL = 'https://github.com/mxamin/python-xmlsec-win-binaries/releases/download/2025.07.10/'
3838 LIB_VERSION_ENV_VARS = {
39- 'openssl_version' : 'PYXMLSEC_OPENSSL_VERSION' ,
4039 'libiconv_version' : 'PYXMLSEC_LIBICONV_VERSION' ,
4140 'libxml2_version' : 'PYXMLSEC_LIBXML2_VERSION' ,
4241 'libxslt_version' : 'PYXMLSEC_LIBXSLT_VERSION' ,
43- 'zlib_version ' : 'PYXMLSEC_ZLIB_VERSION ' ,
42+ 'openssl_version ' : 'PYXMLSEC_OPENSSL_VERSION ' ,
4443 'xmlsec1_version' : 'PYXMLSEC_XMLSEC1_VERSION' ,
44+ 'zlib_version' : 'PYXMLSEC_ZLIB_VERSION' ,
4545 }
4646 UNIX_DEFAULT_LIB_VERSIONS = {
47- 'openssl_version' : '3.6.0' ,
4847 'libiconv_version' : '1.18' ,
49- 'libxml2_version' : '2.14.6' ,
48+ 'libxml2_version' : '2.14.6' , # Make sure it matches with lxml
5049 'libxslt_version' : '1.1.43' ,
51- 'zlib_version ' : '1.3.1 ' ,
50+ 'openssl_version ' : '3.6.0 ' ,
5251 'xmlsec1_version' : '1.3.9' ,
52+ 'zlib_version' : '1.3.1' ,
5353 }
5454 WINDOWS_DEFAULT_LIB_VERSIONS = {
55- 'openssl_version' : '3.0.16.pl1' ,
5655 'libiconv_version' : '1.18-1' ,
57- 'libxml2_version' : '2.11.9-3' ,
56+ 'libxml2_version' : '2.11.9-3' , # Make sure it matches with lxml
5857 'libxslt_version' : '1.1.39' ,
59- 'zlib_version ' : '1.3.1 ' ,
58+ 'openssl_version ' : '3.0.16.pl1 ' ,
6059 'xmlsec1_version' : '1.3.7' ,
60+ 'zlib_version' : '1.3.1' ,
6161 }
6262
6363 def __init__ (self , platform_name , info = None , libs_dir = None , buildroot = None , plat_name = None ):
0 commit comments