Skip to content
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
2 changes: 1 addition & 1 deletion .azure-pipelines/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ extends:
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.9'
versionSpec: '3.10'
displayName: 'Use Python'
- script: |
python -m pip install --upgrade pip
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,8 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']
include:
- os: ubuntu-latest
python-version: '3.12'
- os: ubuntu-latest
python-version: '3.13'
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -69,7 +67,7 @@ jobs:
- name: Get conda
uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.9
python-version: "3.10"
channels: microsoft,conda-forge
- name: Prepare
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Get conda
uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.9
python-version: "3.10"
channels: microsoft,conda-forge
- name: Prepare
run: |
Expand Down
4 changes: 2 additions & 2 deletions meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ build:

requirements:
host:
- python >=3.9
- python >=3.10
- setuptools-scm
- pip
run:
- python >=3.9
- python >=3.10
- microsoft::playwright >=1.37.0
- pytest >=6.2.4,<9.0.0
- pytest-base-url >=1.0.0,<3.0.0
Expand Down
3 changes: 1 addition & 2 deletions pytest-playwright-asyncio/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ authors = [
{name = "Microsoft"}
]
license = {file = "LICENSE"}
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down
3 changes: 1 addition & 2 deletions pytest-playwright/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ authors = [
{name = "Microsoft"}
]
license = {file = "LICENSE"}
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ignore =
E704
[mypy]
ignore_missing_imports = True
python_version = 3.9
python_version = 3.10
warn_unused_ignores = False
warn_redundant_casts = True
warn_unused_configs = True
Expand Down
Loading