summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorBenjamin Schubert <bschubert15@bloomberg.net>2020-12-04 17:51:12 +0000
committerbst-marge-bot <marge-bot@buildstream.build>2020-12-07 19:52:59 +0000
commit60fd8c3cad12f2a119ecb6e8f348c1344de34fde (patch)
tree54d5022b1eb4bf171b44885247685aa16687e177 /.pylintrc
parent7f69411f213271e9efdbb1a0726f144ccef9f0a6 (diff)
downloadbuildstream-60fd8c3cad12f2a119ecb6e8f348c1344de34fde.tar.gz
requirements: Update all requirements
* .pylintrc: Disable new `raise-missing-from` check. We might want to enable that later, but it fails in many places. Let's not merge both changes here. * pluginoriginpip.py: Catch the newer thrown exception from pkg_resources. The previous one still exists, so we should be good keeping the same compatibility as before
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/.pylintrc b/.pylintrc
index 806a11395..56aa38c1a 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -118,6 +118,10 @@ disable=#####################################
unused-argument,
+ # This is good to get context on exceptions, we should enable that
+ # at some point
+ raise-missing-from,
+
##################################################
# Formatting-related messages, enforced by Black #
##################################################