Skip to content

Commit 4e82674

Browse files
ci: fixed .pylintrc and updated actions (#299)
1 parent 2bca13e commit 4e82674

2 files changed

Lines changed: 4 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v6
2121
- name: Set up Python 3.10
22-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: "3.10"
2525
- name: Install dependencies for requirements and testing

.pylintrc

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,6 @@ py-version=3.10
8989
# Discover python modules and packages in the file system subtree.
9090
recursive=no
9191

92-
# When enabled, pylint would attempt to guess common misconfiguration and emit
93-
# user-friendly hints instead of false-positive error messages.
94-
suggestion-mode=yes
95-
9692
# Allow loading of arbitrary C extensions. Extensions are imported into the
9793
# active Python interpreter and may run arbitrary code.
9894
unsafe-load-any-extension=no
@@ -307,8 +303,8 @@ min-public-methods=2
307303
[EXCEPTIONS]
308304

309305
# Exceptions that will emit a warning when caught.
310-
overgeneral-exceptions=BaseException,
311-
Exception
306+
overgeneral-exceptions=builtins.BaseException,
307+
builtins.Exception
312308

313309

314310
[FORMAT]

0 commit comments

Comments
 (0)