Skip to content

Commit

Permalink
Merge pull request #99 from streamlit/upgrade-python313
Browse files Browse the repository at this point in the history
Update playwright to support Python 3.13
  • Loading branch information
raethlein authored Nov 1, 2024
2 parents 6e43b4b + 6c93967 commit d825287
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
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
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

0 comments on commit d825287

Please sign in to comment.