Skip to content

Commit b6f1ce8

Browse files
Bump tools and base images (#205)
1 parent c05690f commit b6f1ce8

File tree

6 files changed

+54
-6
lines changed

6 files changed

+54
-6
lines changed

docs/description/R0917.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# too-many-positional (R0917)
2+
3+
Too many positional arguments in a function call. Will be implemented in
4+
https://github.com/pylint- dev/pylint/issues/9099,msgid/symbol pair
5+
reserved for compatibility with ruff, see
6+
https://github.com/astral-sh/ruff/issues/8946.

docs/description/R1737.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# use-yield-from (R1737)
2+
3+
Use 'yield from' directly instead of yielding each element one by one
4+
Yielding directly from the iterator is faster and arguably cleaner code
5+
than yielding each element one by one in the loop.

docs/description/W4906.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# deprecated-attribute (W4906)
2+
3+
Using deprecated attribute %r The attribute is marked as deprecated and
4+
will be removed in the future.

docs/description/description.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -632,6 +632,11 @@
632632
}
633633
]
634634
},
635+
{
636+
"patternId": "R0917",
637+
"title": "too-many-positional (R0917)",
638+
"description": "Too many positional arguments in a function call. Will be implemented in https://github.com/pylint- dev/pylint/issues/9099,msgid/symbol pair reserved for compatibility with ruff, see https://github.com/astral-sh/ruff/issues/8946."
639+
},
635640
{
636641
"patternId": "R0904",
637642
"title": "too-many-public-methods (R0904)",
@@ -1113,6 +1118,11 @@
11131118
"title": "unnecessary-comprehension (R1721)",
11141119
"description": "Unnecessary use of a comprehension, use %s instead. Instead of using an identity comprehension, consider using the list, dict or set constructor. It is faster and simpler."
11151120
},
1121+
{
1122+
"patternId": "R1737",
1123+
"title": "use-yield-from (R1737)",
1124+
"description": "Use 'yield from' directly instead of yielding each element one by one Yielding directly from the iterator is faster and arguably cleaner code than yielding each element one by one in the loop."
1125+
},
11161126
{
11171127
"patternId": "R1729",
11181128
"title": "use-a-generator (R1729)",
@@ -1258,6 +1268,11 @@
12581268
"title": "deprecated-argument (W4903)",
12591269
"description": "Using deprecated argument %s of method %s() The argument is marked as deprecated and will be removed in the future."
12601270
},
1271+
{
1272+
"patternId": "W4906",
1273+
"title": "deprecated-attribute (W4906)",
1274+
"description": "Using deprecated attribute %r The attribute is marked as deprecated and will be removed in the future."
1275+
},
12611276
{
12621277
"patternId": "W4904",
12631278
"title": "deprecated-class (W4904)",

docs/patterns.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pylintpython3",
3-
"version": "3.0.3",
3+
"version": "3.1.0",
44
"patterns": [
55
{
66
"patternId": "E0103",
@@ -754,6 +754,12 @@
754754
}
755755
]
756756
},
757+
{
758+
"patternId": "R0917",
759+
"level": "Info",
760+
"category": "CodeStyle",
761+
"enabled": false
762+
},
757763
{
758764
"patternId": "R0904",
759765
"level": "Info",
@@ -1330,6 +1336,12 @@
13301336
"category": "CodeStyle",
13311337
"enabled": false
13321338
},
1339+
{
1340+
"patternId": "R1737",
1341+
"level": "Info",
1342+
"category": "CodeStyle",
1343+
"enabled": false
1344+
},
13331345
{
13341346
"patternId": "R1729",
13351347
"level": "Info",
@@ -1504,6 +1516,12 @@
15041516
"category": "CodeStyle",
15051517
"enabled": false
15061518
},
1519+
{
1520+
"patternId": "W4906",
1521+
"level": "Warning",
1522+
"category": "CodeStyle",
1523+
"enabled": false
1524+
},
15071525
{
15081526
"patternId": "W4904",
15091527
"level": "Warning",

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
pylint==3.0.3
2-
Django==5.0.1
1+
pylint==3.1.0
2+
Django==5.0.3
33
pylint-django==2.5.5
4-
Flask==3.0.0
4+
Flask==3.0.2
55
pylint-flask==0.6
66
pylint-common==0.2.5
77
pylint-celery==0.3
8-
SaltPyLint==2023.8.3
9-
jsonpickle==3.0.2
8+
SaltPyLint==2024.2.5
9+
jsonpickle==3.0.3
1010
asttokens==2.4.1
1111
pylint-beam==0.1.2
1212
pylint-pytest==1.1.7

0 commit comments

Comments
 (0)