8000 chore: support Python 3.13 (#2565) · mxschmitt/playwright-python@0f68c18 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0f68c18

Browse files
authored
chore: support Python 3.13 (microsoft#2565)
1 parent 082db40 commit 0f68c18

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,21 @@ jobs:
7777
- os: ubuntu-latest
7878
python-version: '3.12'
7979
browser: chromium
80+
- os: windows-latest
81+
# TODO: Change to actual version when it's released
82+
python-version: '3.13.0-rc.2'
83+
browser: chromium
84+
- os: macos-latest
85+
python-version: '3.13.0-rc.2'
86+
browser: chromium
87+
- os: ubuntu-latest
88+
python-version: '3.13.0-rc.2'
89+
browser: chromium
8090
runs-on: ${{ matrix.os }}
8191
steps:
8292
- uses: actions/checkout@v3
8393
- name: Set up Python
84-
uses: actions/setup-python@v4
94+
uses: actions/setup-python@v5
8595
with:
8696
python-version: ${{ matrix.python-version }}
8797
- name: Install dependencies & browsers

meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ requirements:
2626
- setuptools_scm
2727
run:
2828
- python >=3.8
29-
- greenlet ==3.0.3
29+
- greenlet ==3.1.0
3030
- pyee ==12.0.0
3131

3232
test: # [build_platform == target_platform]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ def _download_and_extract_local_driver(
218218
],
219219
include_package_data=True,
220220
install_requires=[
221-
"greenlet==3.0.3",
221+
"greenlet==3.1.0",
222222
"pyee==12.0.0",
223223
],
224224
# TODO: Can be removed once we migrate to pypa/build or pypa/installer.

0 commit comments

Comments
 (0)
0