Skip to content

Commit

Permalink
Drop python 3.6 and 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Oct 15, 2023
1 parent 2385d71 commit a00eb33
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,11 @@ jobs:
- windows-latest
- macos-latest
python-version:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
# - '3.12' # FixMe: https://github.com/pylint-dev/pylint-pytest/issues/3
# Python 3.6 is not available in `ubuntu-latest`.
exclude:
- python-version: '3.6'
os: ubuntu-latest
include:
- python-version: '3.6'
os: ubuntu-20.04
# - '3.12' # FixMe: https://github.com/pylint-dev/pylint-pytest/issues/3

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

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ classifiers = [
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -27,7 +25,7 @@ classifiers = [
"Operating System :: OS Independent",
]
keywords = ["pylint", "pytest", "plugin"]
requires-python = ">=3.6"
requires-python = ">=3.8"

dependencies = [
"pylint<3",
Expand Down

0 comments on commit a00eb33

Please sign in to comment.