Skip to content

Commit

Permalink
poetry only choosing the first package option for lxml instead of bas…
Browse files Browse the repository at this point in the history
…ing it on platform (python-poetry/poetry#3561)
  • Loading branch information
m4rk4 committed Jun 8, 2023
1 parent 4c1921f commit 2890504
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ feedparser = "^6"
install-playwright = "^0"
# https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml
lxml = [
{markers = "sys_platform == 'win32'", file = "lib/lxml-4.9.0-cp311-cp311-win_amd64.whl"},
{markers = "sys_platform == 'linux'", version = "=4.9.0"}
{version = "=4.9.0", markers = "sys_platform != 'win32'"},
{path = "lib/lxml-4.9.0-cp311-cp311-win_amd64.whl", markers = "sys_platform == 'win32'"}
]
markdown2 = "^2"
Pillow = "^9"
Expand Down

0 comments on commit 2890504

Please sign in to comment.