You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# general build action: any type of project should be built: library(pure and not pure python), application(both pure distributed as python package and application transformed to executable)
# 5. Application packaged to executable with pyinstaller or similar tool.
57
57
#
58
58
# Customization examples:
59
-
# - Recognize constructs(syntax, imports) supported only by higher versions of python and replace them by alternatives from older python. One universal wheel will become version-specific wheel.
59
+
# - Recognize constructs(syntax, imports) supported only by higher versions of python and replace them by alternatives from older python. One universal wheel will become version-specific wheel.
60
60
# - the same could be applied for platform-specific functionalities
61
61
# - optimize implementation
62
-
type BuildAction=code_action.Action[
63
-
BuildRunPayload, BuildRunContext, BuildRunResult
64
-
]
62
+
type BuildAction=code_action.Action[BuildRunPayload, BuildRunContext, BuildRunResult]
0 commit comments