Skip to content

Commit d825287

Browse files
authored
Merge pull request #99 from streamlit/upgrade-python313
Update playwright to support Python 3.13
2 parents 6e43b4b + 6c93967 commit d825287

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ FROM python:${PYTHON_VERSION}-slim-bullseye as e2e_base
66
SHELL ["/bin/bash", "-o", "pipefail", "-e", "-u", "-x", "-c"]
77

88
# Setup Pip
9-
ARG PIP_VERSION="23.2.1"
9+
ARG PIP_VERSION="24.3.1"
1010
ENV PIP_VERSION=${PIP_VERSION}
1111

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

1414
# Setup Playwright
15-
ARG PLAYWRIGHT_VERSION="1.39.0"
15+
ARG PLAYWRIGHT_VERSION="1.48.0"
1616
ENV PLAYWRIGHT_VERSION=${PLAYWRIGHT_VERSION}
1717

1818
RUN pip install --no-cache-dir playwright=="${PLAYWRIGHT_VERSION}" && playwright install webkit chromium firefox --with-deps

cookiecutter/{{ cookiecutter.package_name }}/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"devel": [
2929
"wheel",
3030
"pytest==7.4.0",
31-
"playwright==1.39.0",
31+
"playwright==1.48.0",
3232
"requests==2.31.0",
3333
"pytest-playwright-snapshot==1.0",
3434
"pytest-rerunfailures==12.0",

examples/CustomDataframe/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"devel": [
2424
"wheel",
2525
"pytest==7.4.0",
26-
"playwright==1.39.0",
26+
"playwright==1.48.0",
2727
"requests==2.31.0",
2828
"pytest-playwright-snapshot==1.0",
2929
"pytest-rerunfailures==12.0",

examples/MaterialLogin/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"devel": [
2424
"wheel",
2525
"pytest==7.4.0",
26-
"playwright==1.39.0",
26+
"playwright==1.48.0",
2727
"requests==2.31.0",
2828
"pytest-playwright-snapshot==1.0",
2929
"pytest-rerunfailures==12.0",

examples/RadioButton/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"devel": [
2424
"wheel",
2525
"pytest==7.4.0",
26-
"playwright==1.39.0",
26+
"playwright==1.48.0",
2727
"requests==2.31.0",
2828
"pytest-playwright-snapshot==1.0",
2929
"pytest-rerunfailures==12.0",

examples/SelectableDataTable/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"devel": [
2424
"wheel",
2525
"pytest==7.4.0",
26-
"playwright==1.39.0",
26+
"playwright==1.48.0",
2727
"requests==2.31.0",
2828
"pytest-playwright-snapshot==1.0",
2929
"pytest-rerunfailures==12.0",

template-reactless/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"devel": [
2929
"wheel",
3030
"pytest==7.4.0",
31-
"playwright==1.39.0",
31+
"playwright==1.48.0",
3232
"requests==2.31.0",
3333
"pytest-playwright-snapshot==1.0",
3434
"pytest-rerunfailures==12.0",

template/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"devel": [
2929
"wheel",
3030
"pytest==7.4.0",
31-
"playwright==1.39.0",
31+
"playwright==1.48.0",
3232
"requests==2.31.0",
3333
"pytest-playwright-snapshot==1.0",
3434
"pytest-rerunfailures==12.0",

0 commit comments

Comments
 (0)