Description: change to the 3 version of Python
 Just update the Makefile
Author: Laszlo Boszormenyi (GCS) <gcs@debian.org>
Bug-Debian: https://bugs.debian.org/938469
Last-Update: 2025-11-06

---

--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ all:
 	@echo "targets include dist, upload, install, clean, test, lint"
 
 dist:
-	python setup.py sdist bdist_wheel
+	python3 setup.py sdist bdist_wheel
 	@echo "Look in the dist/ directory"
 
 upload: dist
@@ -12,10 +12,10 @@ upload: dist
 	twine upload dist/*
 
 install:
-	python setup.py install
+	python3 setup.py install
 
 test:
-	PYTHONPATH=. pytest -v tests
+	PYTHONPATH=. python3 setup.py test
 
 lint:
 	pycodestyle
