Skip to content

Commit

Permalink
Upgrade Playwright to 1.39.0 to support Python 3.12 (#84)
Browse files Browse the repository at this point in the history
Use the latest Playwright to support Python 3.12
  • Loading branch information
kajarenc authored Nov 3, 2023
1 parent 661f63e commit efd4e02
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ENV PIP_VERSION=${PIP_VERSION}
RUN pip install --no-cache-dir --upgrade "pip==${PIP_VERSION}" && pip --version

# Setup Playwright
ARG PLAYWRIGHT_VERSION="1.36.0"
ARG PLAYWRIGHT_VERSION="1.39.0"
ENV PLAYWRIGHT_VERSION=${PLAYWRIGHT_VERSION}

RUN pip install --no-cache-dir playwright=="${PLAYWRIGHT_VERSION}" && playwright install webkit chromium firefox --with-deps
Expand Down
2 changes: 1 addition & 1 deletion cookiecutter/{{ cookiecutter.package_name }}/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"devel": [
"wheel",
"pytest==7.4.0",
"playwright==1.36.0",
"playwright==1.39.0",
"requests==2.31.0",
"pytest-playwright-snapshot==1.0",
"pytest-rerunfailures==12.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/CustomDataframe/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"devel": [
"wheel",
"pytest==7.4.0",
"playwright==1.36.0",
"playwright==1.39.0",
"requests==2.31.0",
"pytest-playwright-snapshot==1.0",
"pytest-rerunfailures==12.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/MaterialLogin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"devel": [
"wheel",
"pytest==7.4.0",
"playwright==1.36.0",
"playwright==1.39.0",
"requests==2.31.0",
"pytest-playwright-snapshot==1.0",
"pytest-rerunfailures==12.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/RadioButton/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"devel": [
"wheel",
"pytest==7.4.0",
"playwright==1.36.0",
"playwright==1.39.0",
"requests==2.31.0",
"pytest-playwright-snapshot==1.0",
"pytest-rerunfailures==12.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/SelectableDataTable/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"devel": [
"wheel",
"pytest==7.4.0",
"playwright==1.36.0",
"playwright==1.39.0",
"requests==2.31.0",
"pytest-playwright-snapshot==1.0",
"pytest-rerunfailures==12.0",
Expand Down
2 changes: 1 addition & 1 deletion template-reactless/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"devel": [
"wheel",
"pytest==7.4.0",
"playwright==1.36.0",
"playwright==1.39.0",
"requests==2.31.0",
"pytest-playwright-snapshot==1.0",
"pytest-rerunfailures==12.0",
Expand Down
2 changes: 1 addition & 1 deletion template/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"devel": [
"wheel",
"pytest==7.4.0",
"playwright==1.36.0",
"playwright==1.39.0",
"requests==2.31.0",
"pytest-playwright-snapshot==1.0",
"pytest-rerunfailures==12.0",
Expand Down

0 comments on commit efd4e02

Please sign in to comment.