We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f912a4 commit a27244dCopy full SHA for a27244d
doc/source/whatsnew/v1.2.1.rst
@@ -41,7 +41,7 @@ I/O
41
42
Other
43
~~~~~
44
--
+- Fixed build failure on MacOS 11 in Python 3.9.1 (:issue:`38766`)
45
-
46
47
.. ---------------------------------------------------------------------------
setup.py
@@ -435,7 +435,7 @@ def run(self):
435
"MACOSX_DEPLOYMENT_TARGET", current_system
436
)
437
if (
438
- LooseVersion(python_target) < "10.9"
+ LooseVersion(str(python_target)) < "10.9"
439
and LooseVersion(current_system) >= "10.9"
440
):
441
os.environ["MACOSX_DEPLOYMENT_TARGET"] = "10.9"
0 commit comments