From 496bc9a5b6c4e523fc1743bc95a5f30103d70be6 Mon Sep 17 00:00:00 2001 From: Joe LeVeque Date: Wed, 5 Aug 2020 08:07:06 +0000 Subject: [PATCH] Dsiable building Python 3 sonic-platform-common package for now --- rules/sonic-platform-common.mk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rules/sonic-platform-common.mk b/rules/sonic-platform-common.mk index c7ab75d9f875..aa6ec39fbb26 100644 --- a/rules/sonic-platform-common.mk +++ b/rules/sonic-platform-common.mk @@ -10,8 +10,10 @@ SONIC_PYTHON_WHEELS += $(SONIC_PLATFORM_COMMON_PY2) SONIC_PLATFORM_COMMON_PY3 = sonic_platform_common-1.0-py3-none-any.whl $(SONIC_PLATFORM_COMMON_PY3)_SRC_PATH = $(SRC_PATH)/sonic-platform-common $(SONIC_PLATFORM_COMMON_PY3)_PYTHON_VERSION = 3 -$(SONIC_PLATFORM_COMMON_PY3)_DEPENDS += $(SONIC_PY_COMMON_PY3) +$(SONIC_PLATFORM_COMMON_PY3)_DEPENDS += $(SONIC_PY_COMMON_PY3) $(SONIC_CONFIG_ENGINE) # Synthetic dependency just to avoid race condition $(SONIC_PLATFORM_COMMON_PY3)_DEPENDS += $(SONIC_PLATFORM_COMMON_PY2) $(SONIC_PLATFORM_COMMON_PY3)_TEST = n -SONIC_PYTHON_WHEELS += $(SONIC_PLATFORM_COMMON_PY3) +# Disable building Python 3 package for now, becuase it currently depends on sonic-config-engine, +# and we're not yet building a Python 3 package for sonic-config-engine +#SONIC_PYTHON_WHEELS += $(SONIC_PLATFORM_COMMON_PY3)