Skip to content

Commit

Permalink
chore: support Python 3.13 (#2565)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt authored Sep 20, 2024
1 parent 082db40 commit 0f68c18
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,21 @@ jobs:
- os: ubuntu-latest
python-version: '3.12'
browser: chromium
- os: windows-latest
# TODO: Change to actual version when it's released
python-version: '3.13.0-rc.2'
browser: chromium
- os: macos-latest
python-version: '3.13.0-rc.2'
browser: chromium
- os: ubuntu-latest
python-version: '3.13.0-rc.2'
browser: chromium
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies & browsers
Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ requirements:
- setuptools_scm
run:
- python >=3.8
- greenlet ==3.0.3
- greenlet ==3.1.0
- pyee ==12.0.0

test: # [build_platform == target_platform]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def _download_and_extract_local_driver(
],
include_package_data=True,
install_requires=[
"greenlet==3.0.3",
"greenlet==3.1.0",
"pyee==12.0.0",
],
# TODO: Can be removed once we migrate to pypa/build or pypa/installer.
Expand Down

0 comments on commit 0f68c18

Please sign in to comment.