File tree Expand file tree Collapse file tree 5 files changed +12
-22
lines changed Expand file tree Collapse file tree 5 files changed +12
-22
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ extends:
33
33
steps :
34
34
- task : UsePythonVersion@0
35
35
inputs :
36
- versionSpec : ' 3.8 '
36
+ versionSpec : ' 3.9 '
37
37
displayName : ' Use Python'
38
38
- script : |
39
39
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change 47
47
fail-fast : false
48
48
matrix :
49
49
os : [ubuntu-latest, windows-latest, macos-latest]
50
- python-version : [3.8, 3.9 ]
50
+ python-version : ['3.9', '3.10' ]
51
51
browser : [chromium, firefox, webkit]
52
52
include :
53
- - os : ubuntu-latest
54
- python-version : ' 3.10'
55
- browser : chromium
56
- - os : windows-latest
57
- python-version : ' 3.10'
58
- browser : chromium
59
- - os : macos-latest
60
- python-version : ' 3.10'
61
- browser : chromium
62
53
- os : windows-latest
63
54
python-version : ' 3.11'
64
55
browser : chromium
@@ -78,14 +69,13 @@ jobs:
78
69
python-version : ' 3.12'
79
70
browser : chromium
80
71
- os : windows-latest
81
- # TODO: Change to actual version when it's released
82
- python-version : ' 3.13.0-rc.2'
72
+ python-version : ' 3.13'
83
73
browser : chromium
84
74
- os : macos-latest
85
- python-version : ' 3.13.0-rc.2 '
75
+ python-version : ' 3.13'
86
76
browser : chromium
87
77
- os : ubuntu-latest
88
- python-version : ' 3.13.0-rc.2 '
78
+ python-version : ' 3.13'
89
79
browser : chromium
90
80
runs-on : ${{ matrix.os }}
91
81
steps :
Original file line number Diff line number Diff line change @@ -15,17 +15,17 @@ build:
15
15
16
16
requirements :
17
17
build :
18
- - python >=3.8 # [build_platform != target_platform]
18
+ - python >=3.9 # [build_platform != target_platform]
19
19
- pip # [build_platform != target_platform]
20
20
- cross-python_{{ target_platform }} # [build_platform != target_platform]
21
21
host :
22
- - python >=3.8
22
+ - python >=3.9
23
23
- wheel
24
24
- pip
25
25
- curl
26
26
- setuptools_scm
27
27
run :
28
- - python >=3.8
28
+ - python >=3.9
29
29
- greenlet ==3.1.1
30
30
- pyee ==12.0.0
31
31
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ asyncio_mode = "auto"
18
18
19
19
[tool .mypy ]
20
20
ignore_missing_imports = true
21
- python_version = " 3.8 "
21
+ python_version = " 3.9 "
22
22
warn_unused_ignores = false
23
23
warn_redundant_casts = true
24
24
warn_unused_configs = true
@@ -35,7 +35,7 @@ profile = "black"
35
35
36
36
[tool .pyright ]
37
37
include = [" playwright" , " tests" , " scripts" ]
38
- pythonVersion = " 3.8 "
38
+ pythonVersion = " 3.9 "
39
39
reportMissingImports = false
40
40
reportTypedDictNotRequiredAccess = false
41
41
reportCallInDefaultInitializer = true
Original file line number Diff line number Diff line change @@ -228,15 +228,15 @@ def _download_and_extract_local_driver(
228
228
"Topic :: Internet :: WWW/HTTP :: Browsers" ,
229
229
"Intended Audience :: Developers" ,
230
230
"Programming Language :: Python :: 3" ,
231
- "Programming Language :: Python :: 3.8" ,
232
231
"Programming Language :: Python :: 3.9" ,
233
232
"Programming Language :: Python :: 3.10" ,
234
233
"Programming Language :: Python :: 3.11" ,
235
234
"Programming Language :: Python :: 3.12" ,
235
+ "Programming Language :: Python :: 3.13" ,
236
236
"License :: OSI Approved :: Apache Software License" ,
237
237
"Operating System :: OS Independent" ,
238
238
],
239
- python_requires = ">=3.8 " ,
239
+ python_requires = ">=3.9 " ,
240
240
cmdclass = {"bdist_wheel" : PlaywrightBDistWheelCommand },
241
241
entry_points = {
242
242
"console_scripts" : [
You can’t perform that action at this time.
0 commit comments