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 0c1979c commit 715e009Copy full SHA for 715e009
setup.py
@@ -18,10 +18,7 @@
18
if_win = True
19
elif platform.system() in ["Linux", "Darwin"]:
20
if_win = False
21
- if platform.system() == "Darwin" and (
22
- "MACOSX_DEPLOYMENT_TARGET" not in os.environ
23
- or tuple(map(int, os.environ["MACOSX_DEPLOYMENT_TARGET"].split("."))) < (13, 3)
24
- ):
+ if platform.system() == "Darwin":
25
os.environ["MACOSX_DEPLOYMENT_TARGET"] = "13.3"
26
else:
27
raise SystemError("Only Windows, Linux, or MacOS is supported!")
0 commit comments