Skip to content

Commit ca973d1

Browse files
authored
fix install tags (#2464)
1 parent 828c5f1 commit ca973d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,10 +276,10 @@ def get_tag(self) -> tuple[str, str, str]:
276276
if build_stage == 1:
277277
install_requires += [
278278
f'mlx-metal=={version}; platform_system == "Darwin"',
279-
f'mlx-cuda=={version}; extra != "cpu" and platform_system == "linux"',
279+
f'mlx-cuda=={version}; extra != "cpu" and platform_system == "Linux"',
280280
]
281281
extras["cpu"] = [
282-
f'mlx-cpu=={version}; extra == "cpu" and platform_system == "linux"'
282+
f'mlx-cpu=={version}; extra == "cpu" and platform_system == "Linux"'
283283
]
284284

285285
_setup(

0 commit comments

Comments
 (0)