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 6450e28 commit b019bc5Copy full SHA for b019bc5
build/common.mk
@@ -101,6 +101,11 @@ ifeq ($(PULUMI_ROOT),)
101
PULUMI_ROOT:=/opt/pulumi
102
endif
103
104
+# Use Python 3 explicitly vs expecting that `python` will resolve to a python 3
105
+# runtime.
106
+PYTHON ?= python3
107
+PIP ?= pip3
108
+
109
PULUMI_BIN := $(PULUMI_ROOT)/bin
110
PULUMI_NODE_MODULES := $(PULUMI_ROOT)/node_modules
111
sdk/python/Makefile
@@ -2,14 +2,6 @@ PROJECT_NAME := Pulumi Python SDK
2
LANGHOST_PKG := github.com/pulumi/pulumi/sdk/python/cmd/pulumi-language-python
3
VERSION := $(shell ../../scripts/get-py-version)
4
5
-ifeq ($(PYTHON),)
6
- PYTHON := python
7
-endif
8
-
9
-ifeq ($(PIP),)
10
- PIP := pip
11
12
13
PYENV := ./env
14
PYENVSRC := $(PYENV)/src
15
0 commit comments