We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7cef56 commit df407e2Copy full SHA for df407e2
setup.py
@@ -18,7 +18,9 @@
18
if_win = True
19
elif platform.system() in ["Linux", "Darwin"]:
20
if_win = False
21
- if platform.system() == "Darwin":
+ if platform.system() == "Darwin" and (
22
+ "MACOSX_DEPLOYMENT_TARGET" not in os.environ or float(os.environ["MACOSX_DEPLOYMENT_TARGET"]) < 13.3
23
+ ):
24
os.environ["MACOSX_DEPLOYMENT_TARGET"] = "13.3"
25
else:
26
raise SystemError("Only Windows, Linux, or MacOS is supported!")
0 commit comments