File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,9 @@ def cli_build(
72
72
ports = list (ports )
73
73
boards = list (boards )
74
74
75
+ if len (versions ) > 1 :
76
+ raise NotImplementedError ("Multiple versions are not supported yet\n See https://github.com/Josverl/micropython-stubber/issues/487" )
77
+
75
78
# db = get_database(publish_path=CONFIG.publish_path, production=production)
76
79
log .info (f"Build { family } { versions } { ports } { boards } " )
77
80
Original file line number Diff line number Diff line change @@ -96,6 +96,11 @@ def cli_publish(
96
96
ports = list (ports )
97
97
boards = list (boards )
98
98
99
+ if len (versions ) > 1 :
100
+ raise NotImplementedError (
101
+ "Multiple versions are not supported yet\n See https://github.com/Josverl/micropython-stubber/issues/487"
102
+ )
103
+
99
104
# db = get_database(publish_path=CONFIG.publish_path, production=production)
100
105
destination = "pypi" if production else "test-pypi"
101
106
log .info (f"Publish { family } { versions } { ports } { boards } to { destination } " )
You can’t perform that action at this time.
0 commit comments