aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkgcheck')
-rw-r--r--src/pkgcheck/checks/python.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkgcheck/checks/python.py b/src/pkgcheck/checks/python.py
index 2c46885a..bacbdb5a 100644
--- a/src/pkgcheck/checks/python.py
+++ b/src/pkgcheck/checks/python.py
@@ -48,7 +48,7 @@ def get_python_eclass(pkg):
def is_python_interpreter(pkg):
- if pkg.key == "dev-lang/python":
+ if pkg.key in ("dev-lang/pypy", "dev-lang/python"):
# ignore python:2.7 deps since they are being phased out from eclass
# support
return pkg.slot is None or not pkg.slot.startswith("2")