Skip to content

Commit b14020d

Browse files
committed
Change: remove support for python 3.7 and 3.8
Also, add support for python 3.10 and 3.11
1 parent 5d34955 commit b14020d

File tree

5 files changed

+160
-249
lines changed

5 files changed

+160
-249
lines changed

.github/workflows/ci-python.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ jobs:
1313
strategy:
1414
matrix:
1515
python-version:
16-
- "3.7"
17-
- "3.8"
1816
- "3.9"
1917
- "3.10"
18+
- "3.11"
2019

2120
steps:
2221
- uses: actions/checkout@v3
@@ -32,10 +31,9 @@ jobs:
3231
strategy:
3332
matrix:
3433
python-version:
35-
- "3.7"
36-
- "3.8"
3734
- "3.9"
3835
- "3.10"
36+
- "3.11"
3937

4038
steps:
4139
- uses: actions/checkout@v3

.pylintrc

+1-8
Original file line numberDiff line numberDiff line change
@@ -364,13 +364,6 @@ max-line-length=80
364364
# Maximum number of lines in a module
365365
max-module-lines=1000
366366

367-
# List of optional constructs for which whitespace checking is disabled. `dict-
368-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
369-
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
370-
# `empty-line` allows space-only lines.
371-
no-space-check=trailing-comma,
372-
dict-separator
373-
374367
# Allow the body of a class to be on the same line as the declaration if body
375368
# contains single statement.
376369
single-line-class-stmt=no
@@ -472,4 +465,4 @@ valid-metaclass-classmethod-first-arg=mcs
472465

473466
# Exceptions that will emit a warning when being caught. Defaults to
474467
# "Exception"
475-
overgeneral-exceptions=Exception
468+
overgeneral-exceptions=builtins.Exception

0 commit comments

Comments
 (0)