Skip to content

Commit 2075d14

Browse files
authored
Lock libxml2 to v2.14.6 in manylinux workflow (#380)
It seems that xmlsec library build fails with libxml2 v2.15.0. Let's lock it for now until the issue is resolved in the main repository.
1 parent 869e853 commit 2075d14

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/manylinux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
- name: Build linux_x86_64 wheel
3333
env:
3434
PYXMLSEC_STATIC_DEPS: true
35+
PYXMLSEC_LIBXML2_VERSION: 2.14.6 # Lock it to libxml2 2.14.6 until the issue with 2.15.x is resolved; e.g. https://github.com/lsh123/xmlsec/issues/948
3536
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3637
run: |
3738
/opt/python/${{ matrix.python-abi }}/bin/python -m build

tests/softhsm_setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def setup() -> None:
140140
)
141141

142142
logging.debug('Initializing the token')
143-
out, err = run_cmd(
143+
_, _ = run_cmd(
144144
[
145145
component_path['SOFTHSM'],
146146
'--slot',

0 commit comments

Comments
 (0)