Skip to content

Commit 77d7209

Browse files
authored
Merge pull request #72 from PyBites-Open-Source/install-playwright-breaking-change
Install playwright breaking change
2 parents 828381f + c99ebd6 commit 77d7209

3 files changed

Lines changed: 235 additions & 206 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = [
88
"beautifulsoup4>=4.12.3",
9-
"install-playwright>=0.1.0",
9+
"install-playwright>=1.0.0",
1010
"iterfzf>=1.4.0.54.3",
1111
"pytest-playwright>=0.5.2",
1212
"python-dotenv>=1.0.1",

src/eatlocal/eatlocal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def install_browser() -> None:
166166
167167
"""
168168
with sync_playwright() as p:
169-
install_playwright.install(p.chromium)
169+
install_playwright.install([p.chromium])
170170

171171

172172
def initialize_eatlocal():

0 commit comments

Comments
 (0)