File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments