Skip to content

Commit 8417552

Browse files
committed
add --dlfw in the build (#3824)
1 parent be0f946 commit 8417552

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,10 @@ def load_dep_info():
119119
RELEASE = True
120120
sys.argv.remove("--release")
121121

122+
if "--dlfw" in sys.argv:
123+
IS_DLFW_CI = True
124+
sys.argv.remove("--dlfw")
125+
122126
if (no_ts_env_var := os.environ.get("NO_TORCHSCRIPT")) is not None:
123127
if no_ts_env_var == "1":
124128
NO_TS = True

0 commit comments

Comments
 (0)