We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7a77fe commit 1a92711Copy full SHA for 1a92711
Makefile
@@ -15,6 +15,9 @@ else
15
VIRTUALENV_COMPONENTS_DIR ?= virtualenv-components
16
endif
17
18
+# Assign PYTHON_VERSION if it doesn't already exist
19
+PYTHON_VERSION ?= python3
20
+
21
BINARIES := bin
22
23
# All components are prefixed by st2 and not .egg-info.
@@ -106,7 +109,7 @@ all: requirements configgen check tests
106
109
# Target for debugging Makefile variable assembly
107
110
.PHONY: play
108
111
play:
- @echo PYTHON_VERSION=$$(python --version)
112
+ @echo PYTHON_VERSION=$(PYTHON_VERSION) ($$($(PYTHON_VERSION) --version))
113
@echo
114
@echo COVERAGE_GLOBS=$(COVERAGE_GLOBS_QUOTED)
115
0 commit comments