From 3fe8f364c0fc1df199d6c7e6ea92727c6401e949 Mon Sep 17 00:00:00 2001
From: Andre Sailer <andre.philippe.sailer@cern.ch>
Date: Fri, 14 Jul 2023 11:23:43 +0200
Subject: [PATCH] CI: remove py3k check, we are all py3 by now

---
 .github/scripts/runPythonChecks.sh | 3 ---
 .github/workflows/python.yml       | 3 ---
 2 files changed, 6 deletions(-)

diff --git a/.github/scripts/runPythonChecks.sh b/.github/scripts/runPythonChecks.sh
index 850597d50..4e228e24d 100755
--- a/.github/scripts/runPythonChecks.sh
+++ b/.github/scripts/runPythonChecks.sh
@@ -3,8 +3,5 @@
 source /cvmfs/sft.cern.ch/lcg/views/${VIEW}/setup.sh
 cd /Package
 
-echo "RUNNING PYLINT PY3K CHECK" && \
-find . -name "*.py" -and -not -name 'ddsix.py' -exec pylint --rcfile=.github/scripts/DD4hep.pylint.py3k.rc --py3k --msg-template="{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}" {} + && \
-echo "" && \
 echo "RUNNING FLAKE8 CHECK" && \
 find . -name "*.py" -and -not -name 'ddsix.py' -exec flake8 {} +
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index e6e622fde..eb6016e07 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -15,8 +15,5 @@ jobs:
       with:
         release-platform: ${{ matrix.LCG }}
         run: |
-          echo "RUNNING PYLINT PY3K CHECK"
-          find . -name "*.py" -and -not -name 'ddsix.py' -exec pylint --rcfile=.github/scripts/DD4hep.pylint.py3k.rc --py3k --msg-template="{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}" {} +
-          echo ""
           echo "RUNNING FLAKE8 CHECK"
           find . -name "*.py" -and -not -name 'ddsix.py' -exec flake8 {} +
-- 
GitLab