Skip to content

Commit

Permalink
Upgrade library versions to libxml2 2.10.3 and libxslt 1.1.38.
Browse files Browse the repository at this point in the history
(2.10.4 is released but contains an incompatible change in HTML parsing -> waiting for lxml 5.0)
  • Loading branch information
scoder committed Jul 4, 2023
1 parent 07ddce7 commit 2a1ae93
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
OS_NAME: ${{ matrix.os }}
PYTHON_VERSION: ${{ matrix.python-version }}
MACOSX_DEPLOYMENT_TARGET: 11.0
LIBXML2_VERSION: 2.10.4
LIBXML2_VERSION: 2.10.3
LIBXSLT_VERSION: 1.1.38
COVERAGE: false
GCC_VERSION: 9
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ jobs:
permissions:
contents: write

env: { LIBXML2_VERSION: 2.9.14, LIBXSLT_VERSION: 1.1.37, MACOSX_DEPLOYMENT_TARGET: 11.0 }
env: { LIBXML2_VERSION: 2.10.3, LIBXSLT_VERSION: 1.1.38, MACOSX_DEPLOYMENT_TARGET: 11.0 }

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ Bugs fixed
Other changes
-------------

* Wheels include zlib 1.2.13, libxml2 2.10.3 and libxslt 1.1.38
(zlib 1.2.12, libxml2 2.9.12+ and libxslt 1.1.34 on Windows).

* Built with Cython 0.29.36 to adapt to changes in Python 3.12.


Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ CYTHON_WITH_COVERAGE?=$(shell $(PYTHON) -c 'import Cython.Coverage; import sys;
CYTHON3_WITH_COVERAGE?=$(shell $(PYTHON3) -c 'import Cython.Coverage; import sys; assert not hasattr(sys, "pypy_version_info")' >/dev/null 2>/dev/null && echo " --coverage" || true)

PYTHON_BUILD_VERSION ?= *
MANYLINUX_LIBXML2_VERSION=2.9.14
MANYLINUX_LIBXSLT_VERSION=1.1.35
MANYLINUX_LIBXML2_VERSION=2.10.3
MANYLINUX_LIBXSLT_VERSION=1.1.38
MANYLINUX_CFLAGS=-O3 -g1 -pipe -fPIC -flto
MANYLINUX_LDFLAGS=-flto

Expand Down

0 comments on commit 2a1ae93

Please sign in to comment.