From e04f42ec1af9c920ab84a2a971116fd3562d6084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Wed, 19 Jun 2019 12:38:26 +0200 Subject: [PATCH] Specify CI python version in packaging in case of conflict On MacOS, when no python version is specified, packaging is run with python 2. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8ebac21..c735666 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ compile-requirements: ## Compile requirements files package: ## Build a package ready to upload to pypi pip install twine - python setup.py sdist + python3 setup.py sdist test: test-lint test-unit test-format test-package ## Run all tests by decreasing order or priority