Skip to content

Commit

Permalink
Merge pull request #3193 from teojgo/bugfix/lxml_aarch64
Browse files Browse the repository at this point in the history
[bugfix] Constraint the lxml version on aarch64
  • Loading branch information
vkarak committed May 15, 2024
2 parents 39e6272 + 2c3a5ae commit 3ae9243
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ argcomplete==3.1.2; python_version < '3.8'
argcomplete==3.3.0; python_version >= '3.8'
importlib_metadata==4.0.1; python_version < '3.8'
jsonschema==3.2.0
lxml==5.2.1
lxml==5.2.0; python_version < '3.8' and platform_machine == 'aarch64'
lxml==5.2.2; python_version >= '3.8' or platform_machine != 'aarch64'
pytest==7.0.1; python_version < '3.8'
pytest==8.1.1; python_version >= '3.8'
pytest-forked==1.4.0; python_version == '3.6'
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ install_requires =
argcomplete
argcomplete <= 3.1.2; python_version < '3.8'
jsonschema
lxml
lxml==5.2.0; python_version < '3.8' and platform_machine == 'aarch64'
lxml==5.2.2; python_version >= '3.8' or platform_machine != 'aarch64'
PyYAML
requests
requests <= 2.27.1; python_version == '3.6'
Expand Down

0 comments on commit 3ae9243

Please sign in to comment.