File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
matrix :
11
11
os : [ubuntu-latest, macos-latest, windows-latest]
12
- python-version : ['3.7', '3. 8', '3.9', '3.10']
12
+ python-version : ['3.8', '3.9', '3.10']
13
13
steps :
14
14
- uses : actions/checkout@v4
15
15
- uses : marian-code/python-lint-annotate@master
Original file line number Diff line number Diff line change @@ -46,16 +46,17 @@ steps:
46
46
use-mypy : false
47
47
use-vulture : true
48
48
extra-pylint-options : " --output-format=" colorized"
49
- python-version : " 3.7 "
49
+ python-version : " 3.8 "
50
50
` ` `
51
51
52
52
### Examples
53
53
* [Only lint changed files, and ignore missing docstrings](examples/actions-only_changed_files.yml)
54
54
55
55
## Details
56
56
57
- Uses ` actions/setup-python@v5`. Only python `3.7` - `3.10` version are tested since
58
- they are by far most common now. Other python `3.x` versions should also work.
57
+
58
+ Uses ` actions/setup-python@v5`. Only python `3.8` - `3.10` versions prior to `3.8`
59
+ are not tested since they are EOL now.
59
60
Any python `2.x` versions are unsupported! You can lint on Linux, Windows and MacOS.
60
61
61
62
The lintner versions are :
@@ -112,9 +113,9 @@ jobs:
112
113
use-pylint: false
113
114
use-flake8: false
114
115
use-vulture: true
115
- python-version: "3.7 "
116
+ python-version: "3.8 "
116
117
- run: |
117
- python --version # this will output 3.7 now !!!
118
+ python --version # this will output 3.8 now !!!
118
119
` ` `
119
120
120
121
# # License
You can’t perform that action at this time.
0 commit comments