From 921f59e6a3b4f28a8f89e593472f13472df41b8b Mon Sep 17 00:00:00 2001 From: Ethan Rublee Date: Sat, 30 Sep 2023 15:45:44 -0700 Subject: [PATCH] Try macosx version min. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fdda237e..2c4e8396 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ if sys.platform.startswith("darwin"): print("Running on macOS") platform_cxx_flags = ["-std=c++20", "-stdlib=libc++", "-mmacosx-version-min=10.15"] - os.environ["MACOSX_DEPLOYMENT_TARGET"] = 10.15 + os.environ["MACOSX_DEPLOYMENT_TARGET"] = "10.15" elif sys.platform.startswith("linux"): print("Running on Linux")