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

chore: support Python 3.13 #2565

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
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
Loading