File tree 6 files changed +12
-22
lines changed
6 files changed +12
-22
lines changed Original file line number Diff line number Diff line change @@ -20,20 +20,11 @@ jobs:
20
20
- windows-latest
21
21
- macos-latest
22
22
python-version :
23
- - ' 3.6'
24
- - ' 3.7'
25
23
- ' 3.8'
26
24
- ' 3.9'
27
25
- ' 3.10'
28
26
- ' 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
37
28
38
29
defaults :
39
30
run :
68
59
env :
69
60
FORCE_COLOR : 1
70
61
PYTEST_CI_ARGS : --cov-report=xml --junitxml=test_artifacts/test_report.xml --color=yes
71
- run : tox ${{ matrix.python-version == '3.6' && '-- skip-missing-interpreters=true' || '' }}
62
+ run : tox -- skip-missing-interpreters=true
72
63
73
64
- name : Upload coverage reports to Codecov
74
65
uses : codecov/codecov-action@v3
Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ### Removed
6
+
7
+ * Support for Python 3.6 & 3.7 (https://github.com/pylint-dev/pylint-pytest/pull/23 )
8
+
5
9
## [ 1.1.7] - 2023-12-04
6
10
7
11
This is a small release to support additionally Pylint v3.
Original file line number Diff line number Diff line change 1
1
# Only a configuration storage, for now
2
+ [tool .aliases ]
3
+ test = " pytest"
2
4
3
5
[tool .black ]
4
6
line-length = 100
@@ -36,7 +38,7 @@ paths.source = [
36
38
]
37
39
38
40
[tool .mypy ]
39
- python_version = " 3.7 "
41
+ python_version = " 3.8 "
40
42
check_untyped_defs = true
41
43
explicit_package_bases = true
42
44
namespace_packages = true
@@ -89,8 +91,7 @@ ignore = [
89
91
" RUF012" , # Mutable class attributes should be annotated with `typing.ClassVar`
90
92
]
91
93
92
- # py36, but ruff does not support it :/
93
- target-version = " py37"
94
+ target-version = " py38"
94
95
95
96
[tool .ruff .pydocstyle ]
96
97
convention = " google"
@@ -113,7 +114,7 @@ convention = "google"
113
114
114
115
[tool .pylint ]
115
116
116
- py-version = " 3.6 "
117
+ py-version = " 3.8 "
117
118
118
119
ignore-paths =" tests/input" # Ignore test inputs
119
120
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 31
31
"pylint>=2" ,
32
32
"pytest>=4.6" ,
33
33
],
34
- python_requires = ">=3.6 " ,
34
+ python_requires = ">=3.8 " ,
35
35
classifiers = [
36
36
"Development Status :: 5 - Production/Stable" ,
37
37
"Intended Audience :: Developers" ,
38
38
"Topic :: Software Development :: Testing" ,
39
39
"Topic :: Software Development :: Quality Assurance" ,
40
40
"Programming Language :: Python" ,
41
41
"Programming Language :: Python :: 3" ,
42
- "Programming Language :: Python :: 3.6" ,
43
- "Programming Language :: Python :: 3.7" ,
44
42
"Programming Language :: Python :: 3.8" ,
45
43
"Programming Language :: Python :: 3.9" ,
46
44
"Programming Language :: Python :: 3.10" ,
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
envlist =
3
- py36-pylint2
4
- py37-pylint2
5
3
py38-pylint{2,3}
6
4
py39-pylint{2,3}
7
5
py310-pylint{2,3}
You can’t perform that action at this time.
0 commit comments