Skip to content

Commit 9cb8b4b

Browse files
committed
Upgrade libiconv to 1.19 for both Windows and Linux
1 parent 674c98b commit 9cb8b4b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/cache_libs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55
inputs:
66
LIBICONV_VERSION:
7-
default: "1.18"
7+
default: "1.19"
88
required: false
99
type: string
1010
LIBXML2_VERSION:
@@ -28,7 +28,7 @@ on:
2828
required: false
2929
type: string
3030
WIN_LIBICONV_VERSION:
31-
default: "1.18-1"
31+
default: "1.19-1"
3232
required: false
3333
type: string
3434
WIN_LIBXML2_VERSION:

build_support/lib_xmlsec_dependency_builder.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def triplet(self) -> str:
3636

3737

3838
class LibXmlsecDependencyBuilder:
39-
WINDOWS_LIBS_DOWNLOAD_RELEASE_URL = 'https://github.com/mxamin/python-xmlsec-win-binaries/releases/download/2026.04.28/'
39+
WINDOWS_LIBS_DOWNLOAD_RELEASE_URL = 'https://github.com/mxamin/python-xmlsec-win-binaries/releases/download/2026.05.18/'
4040
LIB_VERSION_ENV_VARS: ClassVar[dict[str, str]] = {
4141
'libiconv_version': 'PYXMLSEC_LIBICONV_VERSION',
4242
'libxml2_version': 'PYXMLSEC_LIBXML2_VERSION',
@@ -46,15 +46,15 @@ class LibXmlsecDependencyBuilder:
4646
'zlib_version': 'PYXMLSEC_ZLIB_VERSION',
4747
}
4848
UNIX_DEFAULT_LIB_VERSIONS: ClassVar[dict[str, str]] = {
49-
'libiconv_version': '1.18',
49+
'libiconv_version': '1.19',
5050
'libxml2_version': '2.14.6', # Make sure it matches with lxml
5151
'libxslt_version': '1.1.43',
5252
'openssl_version': '3.6.0',
5353
'xmlsec1_version': '1.3.11',
5454
'zlib_version': '1.3.1',
5555
}
5656
WINDOWS_DEFAULT_LIB_VERSIONS: ClassVar[dict[str, str]] = {
57-
'libiconv_version': '1.18-1',
57+
'libiconv_version': '1.19-1',
5858
'libxml2_version': '2.11.9-3', # Make sure it matches with lxml
5959
'libxslt_version': '1.1.39',
6060
'openssl_version': '3.5.6',

0 commit comments

Comments
 (0)