From 5dbc4bee13d1b9a86693be7487cab2843c83f4aa Mon Sep 17 00:00:00 2001 From: Baptiste Fontaine Date: Thu, 2 Mar 2023 15:27:36 +0000 Subject: [PATCH] Makefile: use python3 instead of python MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ubuntu doesn’t have a `python` executable; it’s either `python2` or `python3`. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 114f0c753..c895152f4 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ test: import-cldr - python ${PYTHON_TEST_FLAGS} -m pytest ${PYTEST_FLAGS} + python3 ${PYTHON_TEST_FLAGS} -m pytest ${PYTEST_FLAGS} test-env: virtualenv test-env @@ -15,7 +15,7 @@ standalone-test: import-cldr test-env clean: clean-cldr clean-pyc clean-test-env import-cldr: - python scripts/download_import_cldr.py + python3 scripts/download_import_cldr.py clean-cldr: rm -f babel/locale-data/*.dat