summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-04-11 20:59:58 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-04-11 20:59:58 -0400
commit84a9b5f2b93e3010428963c35953b425b2d8019f (patch)
tree94b5c8890291a59be22a42df72b9acd0d757ee82
parent3cd4db3248fe48c3a531855227a9b2a3846e0110 (diff)
downloadpython-coveragepy-git-84a9b5f2b93e3010428963c35953b425b2d8019f.tar.gz
build: update pylint
-rw-r--r--igor.py2
-rw-r--r--requirements/dev.pip4
2 files changed, 3 insertions, 3 deletions
diff --git a/igor.py b/igor.py
index 3c6afa66..a4a460c0 100644
--- a/igor.py
+++ b/igor.py
@@ -387,7 +387,7 @@ def analyze_args(function):
getargspec = inspect.getargspec
with ignore_warnings():
# DeprecationWarning: Use inspect.signature() instead of inspect.getfullargspec()
- argspec = getargspec(function) # pylint: disable=deprecated-method
+ argspec = getargspec(function)
return bool(argspec[1]), len(argspec[0])
diff --git a/requirements/dev.pip b/requirements/dev.pip
index 13a80b9f..0f64609d 100644
--- a/requirements/dev.pip
+++ b/requirements/dev.pip
@@ -15,8 +15,8 @@ tox
# for linting.
greenlet==0.4.16
-astroid==2.5
-pylint==2.7.1
+astroid==2.5.3
+pylint==2.7.4
check-manifest==0.46
readme_renderer==26.0