We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 869e853 commit 2075d14Copy full SHA for 2075d14
.github/workflows/manylinux.yml
@@ -32,6 +32,7 @@ jobs:
32
- name: Build linux_x86_64 wheel
33
env:
34
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
36
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37
run: |
38
/opt/python/${{ matrix.python-abi }}/bin/python -m build
tests/softhsm_setup.py
@@ -140,7 +140,7 @@ def setup() -> None:
140
)
141
142
logging.debug('Initializing the token')
143
- out, err = run_cmd(
+ _, _ = run_cmd(
144
[
145
component_path['SOFTHSM'],
146
'--slot',
0 commit comments