Skip to content

Commit 28f4be8

Browse files
Drop python 3.6 and 3.7
1 parent 48320d5 commit 28f4be8

File tree

2 files changed

+3
-14
lines changed

2 files changed

+3
-14
lines changed

.github/workflows/run-tests.yaml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,11 @@ jobs:
1515
- windows-latest
1616
- macos-latest
1717
python-version:
18-
- '3.6'
19-
- '3.7'
2018
- '3.8'
2119
- '3.9'
2220
- '3.10'
2321
- '3.11'
24-
# - '3.12' # FixMe: https://github.com/pylint-dev/pylint-pytest/issues/3
25-
# Python 3.6 is not available in `ubuntu-latest`.
26-
exclude:
27-
- python-version: '3.6'
28-
os: ubuntu-latest
29-
include:
30-
- python-version: '3.6'
31-
os: ubuntu-20.04
22+
- '3.12' # FixMe: https://github.com/pylint-dev/pylint-pytest/issues/3
3223

3324
defaults:
3425
run:
@@ -53,7 +44,7 @@ jobs:
5344
env:
5445
FORCE_COLOR: 1
5546
PYTEST_CI_ARGS: --cov-report=xml --cov-report=html --junitxml=test_artifacts/test_report.xml --color=yes
56-
run: tox ${{ matrix.python-version == '3.6' && '--skip-missing-interpreters=true' || '' }}
47+
run: tox ${{ '--skip-missing-interpreters=true' }}
5748

5849
- name: Upload coverage reports to Codecov
5950
uses: codecov/codecov-action@v3

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ classifiers = [
1717
"Topic :: Software Development :: Quality Assurance",
1818
"Programming Language :: Python",
1919
"Programming Language :: Python :: 3",
20-
"Programming Language :: Python :: 3.6",
21-
"Programming Language :: Python :: 3.7",
2220
"Programming Language :: Python :: 3.8",
2321
"Programming Language :: Python :: 3.9",
2422
"Programming Language :: Python :: 3.10",
@@ -27,7 +25,7 @@ classifiers = [
2725
"Operating System :: OS Independent",
2826
]
2927
keywords = ["pylint", "pytest", "plugin"]
30-
requires-python = ">=3.6"
28+
requires-python = ">=3.8"
3129

3230
dependencies = [
3331
"pylint<3",

0 commit comments

Comments
 (0)