Skip to content

Commit 7fc1e4f

Browse files
committed
Add logs to see the libxml2 version that is beign used by xmlsec and lxml
1 parent 806cdf6 commit 7fc1e4f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/linuxbrew.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,7 @@ jobs:
4949
export LDFLAGS="-L$(brew --prefix)/lib"
5050
export PKG_CONFIG_PATH="$(brew --prefix)/opt/libxml2/lib/pkgconfig"
5151
pip3 install --upgrade --no-binary=lxml -r requirements-test.txt
52+
python3 -c "from lxml import etree; print('lxml libxml2 compiled:', etree.LIBXML_COMPILED_VERSION); print('lxml libxml2 runtime:', etree.LIBXML_VERSION)"
5253
pip3 install xmlsec --only-binary=xmlsec --no-index --find-links=dist/
54+
python3 -c "import xmlsec; print('xmlsec libxml2 compiled:', xmlsec.get_libxml_compiled_version()); print('xmlsec libxml2 runtime:', xmlsec.get_libxml_version()); print('xmlsec libxmlsec:', xmlsec.get_libxmlsec_version())"
5355
pytest -v --color=yes

0 commit comments

Comments
 (0)