Skip to content

Commit 59e1257

Browse files
committed
Update
[ghstack-poisoned]
1 parent 307ce02 commit 59e1257

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

install_requirements.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,16 @@ def install_requirements(use_pytorch_nightly):
110110
check=True,
111111
)
112112

113-
LOCAL_REQUIREMENTS = [
114-
"third-party/ao", # We need the latest kernels for fast iteration, so not relying on pypi.
115-
"extension/llm/tokenizers", # TODO(larryliu0820): Setup a pypi package for this.
116-
]
113+
LOCAL_REQUIREMENTS = (
114+
[
115+
"third-party/ao", # We need the latest kernels for fast iteration, so not relying on pypi.
116+
]
117+
+ [
118+
"extension/llm/tokenizers", # TODO(larryliu0820): Setup a pypi package for this.
119+
]
120+
if sys.platform != "win32"
121+
else []
122+
) # TODO(gjcomer): Re-enable when buildable on Windows.
117123

118124
# Install packages directly from local copy instead of pypi.
119125
# This is usually not recommended.

0 commit comments

Comments
 (0)