Skip to content

Commit 1ef687a

Browse files
Drop python 3.6 and 3.7
#8 (comment)
1 parent 245d147 commit 1ef687a

File tree

3 files changed

+4
-13
lines changed

3 files changed

+4
-13
lines changed

.github/workflows/run-tests.yaml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,11 @@ jobs:
2020
- windows-latest
2121
- macos-latest
2222
python-version:
23-
- '3.6'
24-
- '3.7'
2523
- '3.8'
2624
- '3.9'
2725
- '3.10'
2826
- '3.11'
29-
# - '3.12' # FixMe: https://github.com/pylint-dev/pylint-pytest/issues/3
30-
# Python 3.6 is not available in `ubuntu-latest`.
31-
exclude:
32-
- python-version: '3.6'
33-
os: ubuntu-latest
34-
include:
35-
- python-version: '3.6'
36-
os: ubuntu-20.04
27+
# - '3.12' # FixMe: https://github.com/pylint-dev/pylint-pytest/issues/3
3728

3829
defaults:
3930
run:
@@ -61,7 +52,7 @@ jobs:
6152
env:
6253
FORCE_COLOR: 1
6354
PYTEST_CI_ARGS: --cov-report=xml --cov-report=html --junitxml=test_artifacts/test_report.xml --color=yes
64-
run: tox ${{ matrix.python-version == '3.6' && '--skip-missing-interpreters=true' || '' }}
55+
run: tox --skip-missing-interpreters=true
6556

6657
- name: Upload coverage reports to Codecov
6758
uses: codecov/codecov-action@v3

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"pylint<3",
3232
"pytest>=4.6",
3333
],
34-
python_requires=">=3.6",
34+
python_requires=">=3.8",
3535
classifiers=[
3636
"Development Status :: 5 - Production/Stable",
3737
"Intended Audience :: Developers",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37,py38,py39,py310,py311
2+
envlist = py38,py39,py310,py311
33
skipsdist = True
44
passenv =
55
FORCE_COLOR

0 commit comments

Comments
 (0)