From f37a0cff5cb7b85e7a7c41a0ffcc67ff67750956 Mon Sep 17 00:00:00 2001 From: geisserml Date: Fri, 30 Sep 2022 22:17:03 +0200 Subject: [PATCH] packaging_base: add note --- setupsrc/pl_setup/packaging_base.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setupsrc/pl_setup/packaging_base.py b/setupsrc/pl_setup/packaging_base.py index eaf0ec63f..6a89befd7 100644 --- a/setupsrc/pl_setup/packaging_base.py +++ b/setupsrc/pl_setup/packaging_base.py @@ -45,6 +45,8 @@ class SystemNames: class PlatformNames: + # - Attribute names and values are expected to match + # - Platform names are expected to start with the corresponding system name linux_x64 = SystemNames.linux + "_x64" linux_x86 = SystemNames.linux + "_x86" linux_arm64 = SystemNames.linux + "_arm64"