Skip to content
Open
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
5 changes: 3 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# appveyor.yml - https://www.appveyor.com/docs/lang/python
# https://www.appveyor.com/docs/windows-images-software/#visual-studio-2022
# https://www.appveyor.com/docs/windows-images-software/#visual-studio-2017
---
image: Visual Studio 2022
image: Visual Studio 2017

environment:
matrix:
- PY_PYTHON: 2.7
Expand Down
3 changes: 2 additions & 1 deletion requirements-optional.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ chardet>=2.2.1

# lxml is supported with its own treebuilder ("lxml") and otherwise
# uses the standard ElementTree support
lxml>=3.4.0 ; platform_python_implementation == 'CPython'
lxml>=3.4.0, <5.0.0 ; python_version < '3.0' and platform_python_implementation == 'CPython'
Comment thread
loqs marked this conversation as resolved.
lxml>=3.4.0 ; python_version >= '3.0' and platform_python_implementation == 'CPython'