Skip to content

Commit

Permalink
Pinned lxml to <5.0 on macos/py38
Browse files Browse the repository at this point in the history
Details:

* lxml>=5.0 fails installing on macos 14 with Python 3.8.

Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
  • Loading branch information
andy-maier committed Apr 28, 2024
1 parent 89f33fc commit 0d3e70e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ FormEncode>=2.0.0; python_version >= '3.6'
# lxml 4.9.2 addresses changes in Python 3.11
# lxml 4.9.3 python 3.12
lxml>=4.6.2; python_version == '2.7'
lxml>=4.6.2; python_version >= '3.6' and python_version <= '3.9'
lxml>=4.6.2; python_version >= '3.6' and python_version <= '3.7'
# lxml>=5.0 fails installing on macOS 14 with Python 3.8, see https://bugs.launchpad.net/lxml/+bug/2063945
lxml>=4.6.2,<5.0; python_version == '3.8' and sys_platform == 'darwin'
lxml>=4.6.2; python_version == '3.8' and sys_platform != 'darwin'
lxml>=4.6.2; python_version == '3.9'
lxml>=4.6.4; python_version == '3.10'
lxml>=4.9.2; python_version == '3.11'
lxml>=4.9.3; python_version == '3.12'
Expand Down

0 comments on commit 0d3e70e

Please sign in to comment.