diff --git a/lint.sh b/lint.sh
index 783cac3c5fc43844dd8b1b133a57976f52b370cb..32fbffb20ce4f5ea07b8743b0c7416bd7f14bfbe 100755
--- a/lint.sh
+++ b/lint.sh
@@ -7,7 +7,7 @@ set -o errexit
 # - https://bitbucket.org/logilab/pylint/issues/701/false-positives-with-not-an-iterable-and
 # - https://bitbucket.org/logilab/pylint/issues/58
 
-find . -name '*.py' \
+find . -name '*.py' -not -name 'versioneer.py' -not -name _version.py \
   | xargs pylint \
   --errors-only \
   --disable=print-statement,unsubscriptable-object,not-an-iterable,no-member