We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 774fb47 commit 774b41cCopy full SHA for 774b41c
cpython-windows/build.py
@@ -2408,14 +2408,12 @@ def main():
2408
default="static-noopt",
2409
help="How to compile Python",
2410
)
2411
- parser.add_argument("--sh", help="Path to sh.exe in a cygwin or mingw installation")
+ parser.add_argument(
2412
+ "--sh", required=True, help="Path to sh.exe in a cygwin or mingw installation"
2413
+ )
2414
2415
args = parser.parse_args()
2416
- if args.python in ("cpython-3.8", "cpython-3.9") and not args.sh:
- print("--sh required when building Python 3.8+")
2417
- return 1
2418
-
2419
log_path = BUILD / "build.log"
2420
2421
with log_path.open("wb") as log_fh:
0 commit comments