You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_osx_support.get_platform_osx(), particularly when called from sysconfig.get_platform(), might not return the minor release number. This seems to be because the MACOSX_DEPLOYMENT_TARGET environment variable will be used instead (if present), which may or may not include a minor version number.
E.g. on macOS 12.6 with MACOSX_DEPLOYMENT_TARGET=12:
_osx_support.get_platform_osx(), particularly when called fromsysconfig.get_platform(), might not return the minor release number. This seems to be because theMACOSX_DEPLOYMENT_TARGETenvironment variable will be used instead (if present), which may or may not include a minor version number.E.g. on macOS 12.6 with
MACOSX_DEPLOYMENT_TARGET=12:Perhaps
release = macvercould be switched torelease = macreleasehere so that the internal_get_system_version()will be used instead?Linked PRs