Skip to content

Commit f2dbb04

Browse files
authored
Remove pylint<2.5.0 restriction (#462)
* remove restriction on pylint<2.5.0 * Update pylint_wrapper.py
1 parent 601f7d1 commit f2dbb04

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

metaflow/pylint_wrapper.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,7 @@ def _filter_lines(self, output):
7272
# Ditto for dynamically added properties in 'current'
7373
if "Instance of 'Current' has no" in line:
7474
continue
75+
# Ignore complaints of self.next not callable
76+
if "self.next is not callable" in line:
77+
continue
7578
yield line

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'click>=7.0',
2020
'requests',
2121
'boto3',
22-
'pylint<2.5.0'
22+
'pylint'
2323
],
2424
tests_require = [
2525
'coverage'

0 commit comments

Comments
 (0)