# HG changeset patch # User Anton Shestakov # Date 1680893546 10800 # Node ID 623517b1d83b1db2b7d8c720944c45eca6ed7745 # Parent f06ba91ae68ee93d466f25bd678c01420856e5cd 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 f06ba91ae68e -r 623517b1d83b debian/rules --- a/debian/rules Fri Apr 07 22:01:38 2023 +0200 +++ 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: