Commit fae6e50a authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Use newer pylint, disable new dumb numpy shape-not-subscriptable warning

parent 1f5966b7
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -4,3 +4,7 @@
  val: all
- arg: enable
  val: E

# https://github.com/PyCQA/pylint/issues/3381
- arg: disable
  val: E1136
+3 −5
Original line number Diff line number Diff line
@@ -26,11 +26,9 @@ else
  source build-py-project.sh
fi

# Version restrictions added 2019-09-25 by AK:
# https://github.com/PyCQA/pylint/issues/3139
# https://gitlab.tiker.net/inducer/pytential/merge_requests/182
# https://gitlab.tiker.net/inducer/leap/pipelines/19503 (?)
$PY_EXE -m pip install "pylint<2.4" "astroid<2.3" PyYAML
# <2.5 version bound put in place out of an abundance of cautiousness, no particular reason
# 2020-02-02 AK
$PY_EXE -m pip install "pylint<2.5" PyYAML

PYLINT_RUNNER_ARGS="--yaml-rcfile=.pylintrc.yml"