Skip to content

Commit

Permalink
chore: drop Python 3.7 (microsoft#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Jul 18, 2023
1 parent 97a4457 commit 7f73ece
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, '3.10', 3.11]
python-version: [3.8, 3.9, '3.10', 3.11]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ignore =
E302
[mypy]
ignore_missing_imports = True
python_version = 3.7
python_version = 3.8
warn_unused_ignores = False
warn_redundant_casts = True
warn_unused_configs = True
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
entry_points={"pytest11": ["playwright = pytest_playwright.pytest_playwright"]},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -32,7 +31,7 @@
"Operating System :: OS Independent",
"Framework :: Pytest",
],
python_requires=">=3.7",
python_requires=">=3.8",
use_scm_version={
"version_scheme": "post-release",
"write_to": "pytest_playwright/_repo_version.py",
Expand Down

0 comments on commit 7f73ece

Please sign in to comment.