# HG changeset patch # User Anton Shestakov # Date 1680893546 10800 # Node ID bf9ffcabaa201e7665f48612c482d29f3719833a # Parent db0fd1f1a7d01c4fcadd4137b56b82729c70c78a packaging: use python3 instead of python in debian/rules Looks like `python` doesn't exist for certain setups, and also using python3 explicitly is better (considering our .deb building scripts/infrastructure only supports Python 3). diff -r db0fd1f1a7d0 -r bf9ffcabaa20 debian/rules --- a/debian/rules Thu May 25 11:08:09 2023 -0300 +++ b/debian/rules Fri Apr 07 15:52:26 2023 -0300 @@ -16,7 +16,7 @@ ifeq (,$(filter nocheck, $(DEB_BUILD_OPTIONS))) override_dh_auto_test: hgsrc_defined - cd tests && python $(HGSRC)/tests/run-tests.py --with-hg=$(HGSRC)/hg --blacklist=$(CURDIR)/debian/test-blacklist + cd tests && python3 $(HGSRC)/tests/run-tests.py --with-hg=$(HGSRC)/hg --blacklist=$(CURDIR)/debian/test-blacklist endif override_dh_python3: