Skip to content

Commit b4c9c8a

Browse files
committed
Add nogil target for build command
1 parent b11e887 commit b4c9c8a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/cli/command.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,17 +167,17 @@ def build_parser(self, subparsers):
167167
)
168168
group.add_argument(
169169
'--ecc-rft', dest='target', default='std',
170-
action="store_const", const='ecc',
170+
action="store_const", const='ecc-rft',
171171
help='generate scripts by combining --rft and --ecc'
172172
)
173173
group.add_argument(
174174
'--ecc-nogil', dest='target', default='std',
175-
action="store_const", const='ecc',
175+
action="store_const", const='ecc-nogil',
176176
help='genetate ECC scripts for free-threading Python'
177177
)
178178
group.add_argument(
179179
'--ecc-rft-nogil', dest='target', default='std',
180-
action="store_const", const='ecc',
180+
action="store_const", const='ecc-rft-nogil',
181181
help=('generate scripts by combining --rft and --ecc'
182182
' for free-threading Python')
183183
)

0 commit comments

Comments
 (0)