crit: drop python 2 support

This patch reverts changes introduced with the following commits:

4feb07020d
crit: enable python2 or python3 based crit

b78c4e071a
test: fix crit test and extend it

Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
This commit is contained in:
Radostin Stoyanov 2023-06-20 08:43:34 +01:00 committed by Andrei Vagin
parent 7825f4ebfa
commit f5d06571c5
8 changed files with 8 additions and 44 deletions

View file

@ -1,13 +0,0 @@
all-y += crit
crit/crit: crit/crit-$(PYTHON)
$(Q) cp $^ $@
crit: crit/crit
.PHONY: crit
clean-crit:
$(Q) $(RM) crit/crit
.PHONY: clean-crit
clean: clean-crit
mrproper: clean

View file

@ -3,4 +3,4 @@
from pycriu import cli
if __name__ == '__main__':
cli.main()
cli.main()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python2
from pycriu import cli
if __name__ == '__main__':
cli.main()