Skip to content

Commit 9e6cd92

Browse files
authored
Fix pylint CI (#634)
* remove deprecation warning of pylint * skip editable installs for pylint in CI
1 parent c4d0ddd commit 9e6cd92

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/ci_action.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,8 @@ jobs:
5252

5353
- name: Install packages
5454
run: |
55-
sudo apt-get update
56-
sudo apt-get install -y build-essential libgdal-dev graphviz proj-bin gcc libproj-dev libspatialindex-dev
5755
pip install -r requirements-dev.txt --upgrade
58-
python install_all.py -e
56+
python install_all.py
5957
6058
- name: Run pylint
6159
run: make pylint

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ min-similarity-lines = 5
3838
valid-metaclass-classmethod-first-arg = "mcs"
3939

4040
[tool.pylint.exceptions]
41-
overgeneral-exceptions = "Exception"
41+
overgeneral-exceptions = "builtins.Exception"
4242

4343
[tool.pylint.refactoring]
4444
max-nested-blocks = 7

0 commit comments

Comments
 (0)