Skip to content

Commit 5f48b78

Browse files
authored
chore: drop Python 3.9 (#299)
1 parent c1af305 commit 5f48b78

File tree

7 files changed

+9
-13
lines changed

7 files changed

+9
-13
lines changed

.azure-pipelines/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ extends:
3636
steps:
3737
- task: UsePythonVersion@0
3838
inputs:
39-
versionSpec: '3.9'
39+
versionSpec: '3.10'
4040
displayName: 'Use Python'
4141
- script: |
4242
python -m pip install --upgrade pip

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,8 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
os: [ubuntu-latest, windows-latest, macos-latest]
28-
python-version: ['3.9', '3.10', '3.11']
28+
python-version: ['3.10', '3.11', '3.12']
2929
include:
30-
- os: ubuntu-latest
31-
python-version: '3.12'
3230
- os: ubuntu-latest
3331
python-version: '3.13'
3432
runs-on: ${{ matrix.os }}
@@ -69,7 +67,7 @@ jobs:
6967
- name: Get conda
7068
uses: conda-incubator/setup-miniconda@v3
7169
with:
72-
python-version: 3.9
70+
python-version: "3.10"
7371
channels: microsoft,conda-forge
7472
- name: Prepare
7573
run: |

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Get conda
1616
uses: conda-incubator/setup-miniconda@v3
1717
with:
18-
python-version: 3.9
18+
python-version: "3.10"
1919
channels: microsoft,conda-forge
2020
- name: Prepare
2121
run: |

meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ build:
1616

1717
requirements:
1818
host:
19-
- python >=3.9
19+
- python >=3.10
2020
- setuptools-scm
2121
- pip
2222
run:
23-
- python >=3.9
23+
- python >=3.10
2424
- microsoft::playwright >=1.37.0
2525
- pytest >=6.2.4,<9.0.0
2626
- pytest-base-url >=1.0.0,<3.0.0

pytest-playwright-asyncio/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ authors = [
1010
{name = "Microsoft"}
1111
]
1212
license = {file = "LICENSE"}
13-
requires-python = ">=3.9"
13+
requires-python = ">=3.10"
1414
classifiers = [
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
1918
"Programming Language :: Python :: 3.12",

pytest-playwright/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ authors = [
1010
{name = "Microsoft"}
1111
]
1212
license = {file = "LICENSE"}
13-
requires-python = ">=3.9"
13+
requires-python = ">=3.10"
1414
classifiers = [
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
1918
"Programming Language :: Python :: 3.12",

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ignore =
77
E704
88
[mypy]
99
ignore_missing_imports = True
10-
python_version = 3.9
10+
python_version = 3.10
1111
warn_unused_ignores = False
1212
warn_redundant_casts = True
1313
warn_unused_configs = True

0 commit comments

Comments
 (0)