Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update playwright to support Python 3.13 #99

Merged
merged 3 commits into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ FROM python:${PYTHON_VERSION}-slim-bullseye as e2e_base
SHELL ["/bin/bash", "-o", "pipefail", "-e", "-u", "-x", "-c"]

# Setup Pip
ARG PIP_VERSION="23.2.1"
ARG PIP_VERSION="24.3.1"
ENV PIP_VERSION=${PIP_VERSION}

RUN pip install --no-cache-dir --upgrade "pip==${PIP_VERSION}" && pip --version

# Setup Playwright
ARG PLAYWRIGHT_VERSION="1.39.0"
ARG PLAYWRIGHT_VERSION="1.48.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.39.0",
"playwright==1.48.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.39.0",
"playwright==1.48.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.39.0",
"playwright==1.48.0",
"requests==2.31.0",
"pytest-playwright-snapshot==1.0",
"pytest-rerunfailures==12.0",
Expand Down
10,282 changes: 10,282 additions & 0 deletions examples/RadioButton/radio_button/frontend/yarn.lock

Large diffs are not rendered by default.

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.39.0",
"playwright==1.48.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.39.0",
"playwright==1.48.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.39.0",
"playwright==1.48.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.39.0",
"playwright==1.48.0",
"requests==2.31.0",
"pytest-playwright-snapshot==1.0",
"pytest-rerunfailures==12.0",
Expand Down
Loading