Skip to content

Commit

Permalink
chore: support Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Oct 6, 2023
1 parent f1c44c1 commit 41e5270
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,23 @@ jobs:
- os: macos-11.0
python-version: '3.10'
browser: chromium
- os: ubuntu-latest
python-version: '3.11'
browser: chromium
- os: windows-latest
python-version: '3.11'
browser: chromium
- os: macos-latest
python-version: '3.11'
browser: chromium
- os: ubuntu-latest
python-version: '3.11'
python-version: '3.12'
browser: chromium
- os: windows-latest
python-version: '3.11'
python-version: '3.12'
browser: chromium
- os: macos-latest
python-version: '3.12'
browser: chromium
runs-on: ${{ matrix.os }}
steps:
Expand Down
1 change: 1 addition & 0 deletions conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ python:
- 3.9
- "3.10"
- "3.11"
- "3.12"
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ requirements:
- setuptools_scm
run:
- python
- greenlet ==2.0.2
- greenlet ==3.0.0
- pyee ==9.0.4
- typing_extensions # [py<39]
test:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def _download_and_extract_local_driver(
packages=["playwright"],
include_package_data=True,
install_requires=[
"greenlet==2.0.2",
"greenlet==3.0.0",
"pyee==9.0.4",
"typing-extensions;python_version<='3.8'",
],
Expand All @@ -225,6 +225,7 @@ def _download_and_extract_local_driver(
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
Expand Down

0 comments on commit 41e5270

Please sign in to comment.