Skip to content

Commit bc95dc1

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

File tree

4 files changed

+8
-15
lines changed

4 files changed

+8
-15
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

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
### Removed
6+
7+
- Support for Python 3.6 & 3.7 (#23)
8+
59
## [1.1.3] - 2023-10-23
610

711
This is the first release after maintenance was assumed by https://github.com/stdedos.

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,14 @@
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",
3838
"Topic :: Software Development :: Testing",
3939
"Topic :: Software Development :: Quality Assurance",
4040
"Programming Language :: Python",
4141
"Programming Language :: Python :: 3",
42-
"Programming Language :: Python :: 3.6",
43-
"Programming Language :: Python :: 3.7",
4442
"Programming Language :: Python :: 3.8",
4543
"Programming Language :: Python :: 3.9",
4644
"Programming Language :: Python :: 3.10",

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)