[pypy-commit] pypy py3.6: set minimal MACOSX_DEPLOYMENT_TARGET to 10.7 on macOS; cpython does not have this

mattip pypy.commits at gmail.com
Mon Oct 28 05:47:24 EDT 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.6
Changeset: r97872:73d1f8c0a863
Date: 2019-10-28 11:46 +0200
http://bitbucket.org/pypy/pypy/changeset/73d1f8c0a863/

Log:	set minimal MACOSX_DEPLOYMENT_TARGET to 10.7 on macOS; cpython does
	not have this

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
@@ -109,7 +109,7 @@
             # else: fall back to the default behaviour
     if not _SYSTEM_VERSION:
         # minimum supported MACOSX_DEPLOYMENT_TARGET version
-        return '10.14'
+        return '10.7'
     return _SYSTEM_VERSION
 
 def _remove_original_values(_config_vars):


More information about the pypy-commit mailing list