Skip to content

Commit

Permalink
Increased min version of lxml to fix safety issue
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
  • Loading branch information
andy-maier committed Sep 20, 2022
1 parent 2d8265e commit f28d542
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion minimum-constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ FormEncode==2.0.0; python_version >= '3.10'

# Lxml
lxml==4.6.2; python_version == '2.7'
lxml==4.2.4; python_version == '3.4'
lxml==4.2.5; python_version == '3.4'
lxml==4.6.2; python_version >= '3.5' and python_version <= '3.9'
lxml==4.6.4; python_version >= '3.10'

Expand Down
3 changes: 2 additions & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ FormEncode>=2.0.0; python_version >= '3.10'
# lxml 4.6.1 addressed safety issue 38892
# lxml 4.6.2 addressed safety issue 39194
# lxml 4.6.3 addressed safety issue 40072
# lxml 4.2.5 addressed safety issue 50747
lxml>=4.6.2; python_version == '2.7'
lxml>=4.2.4,<4.4.0; python_version == '3.4'
lxml>=4.2.5,<4.4.0; python_version == '3.4'
lxml>=4.6.2; python_version >= '3.5' and python_version <= '3.9'
lxml>=4.6.4; python_version >= '3.10'

Expand Down

0 comments on commit f28d542

Please sign in to comment.