Skip to content

Commit ad49e1f

Browse files
authored
Remove extra Windows build options (#332)
These were unintentionally expanded in #326
1 parent 0d7e5e0 commit ad49e1f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cpython-windows/build.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1867,8 +1867,7 @@ def main() -> None:
18671867
default="cpython-3.11",
18681868
help="Python distribution to build",
18691869
)
1870-
# TODO: Rename this to `--options` to match the Unix build script
1871-
optimizations = {"debug", "noopt", "pgo", "lto", "pgo+lto"}
1870+
optimizations = {"noopt", "pgo"}
18721871
parser.add_argument(
18731872
"--options",
18741873
choices=optimizations.union({f"freethreaded+{o}" for o in optimizations}),

0 commit comments

Comments
 (0)