Преглед изворни кода

match psutil platform detection might catch some edge cases

Alex Cheema пре 1 година
родитељ
комит
998d484384
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      setup.py

+ 1 - 1
setup.py

@@ -23,7 +23,7 @@ install_requires = [
 ]
 
 # Add macOS-specific packages if on Darwin (macOS)
-if sys.platform == "darwin":
+if sys.platform.startswith("darwin"):
     install_requires.extend(
         [
             "mlx==0.15.1",