summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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