Author: Matti Picus <[email protected]>
Branch: py3.6
Changeset: r96787:71345b967667
Date: 2019-06-11 08:43 +0300
http://bitbucket.org/pypy/pypy/changeset/71345b967667/
Log: set minimum supported MACOSX_DEPLOYMENT_TARGET (like in
3bcc9f863e44)
diff --git a/lib-python/3/_osx_support.py b/lib-python/3/_osx_support.py
--- a/lib-python/3/_osx_support.py
+++ b/lib-python/3/_osx_support.py
@@ -107,7 +107,9 @@
if m is not None:
_SYSTEM_VERSION = '.'.join(m.group(1).split('.')[:2])
# else: fall back to the default behaviour
-
+ if not _SYSTEM_VERSION:
+ # minimum supported MACOSX_DEPLOYMENT_TARGET version
+ return '10.14'
return _SYSTEM_VERSION
def _remove_original_values(_config_vars):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit