Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/manylinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- name: Build linux_x86_64 wheel
env:
PYXMLSEC_STATIC_DEPS: true
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
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
/opt/python/${{ matrix.python-abi }}/bin/python -m build
Expand Down
2 changes: 1 addition & 1 deletion tests/softhsm_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def setup() -> None:
)

logging.debug('Initializing the token')
out, err = run_cmd(
_, _ = run_cmd(
[
component_path['SOFTHSM'],
'--slot',
Expand Down
Loading