Przeglądaj źródła

match psutil platform detection might catch some edge cases

Alex Cheema 1 rok temu
rodzic
commit
998d484384
1 zmienionych plików z 1 dodań i 1 usunięć
  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",