Skip to content

Commit cb8a0a6

Browse files
committed
Drop Python 3.7 and support only Python 3.8+
Python 3.7 is EOL, and updated versions of some dependencies, such as pylint 3, only support Python 3.8+. Drop Python 3.7 in preparation to update those dependencies, which in turn should enable support for Python 3.11 and 3.12.
1 parent 50e6253 commit cb8a0a6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/all-lints.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
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']
1313
steps:
1414
- uses: actions/checkout@v1
1515
- uses: marian-code/python-lint-annotate@master

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ steps:
4646
use-mypy: false
4747
use-vulture: true
4848
extra-pylint-options: "--output-format="colorized"
49-
python-version: "3.7"
49+
python-version: "3.8"
5050
```
5151
5252
### Examples
5353
* [Only lint changed files, and ignore missing docstrings](examples/actions-only_changed_files.yml)
5454
5555
## Details
5656
57-
Uses `actions/setup-python@v2`. Only python `3.7` - `3.10` version are tested since
57+
Uses `actions/setup-python@v2`. Only python `3.8` - `3.10` version are tested since
5858
they are by far most common now. Other python `3.x` versions should also work.
5959
Any python `2.x` versions are unsupported! You can lint on Linux, Windows and MacOS.
6060

@@ -112,9 +112,9 @@ jobs:
112112
use-pylint: false
113113
use-flake8: false
114114
use-vulture: true
115-
python-version: "3.7"
115+
python-version: "3.8"
116116
- run: |
117-
python --version # this will output 3.7 now !!!
117+
python --version # this will output 3.8 now !!!
118118
```
119119

120120
## License

0 commit comments

Comments
 (0)