diff options
| author | Kian-Meng, Ang <kianmeng@cpan.org> | 2021-10-14 23:25:59 +0800 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-10-18 21:08:29 -0400 |
| commit | 42f0cf2d17c82ec2fde18fa74ff2f7fc0a60d892 (patch) | |
| tree | 451dfb1f5b623de33e61c42f56d011c361558f51 | |
| parent | b5030e080f08402b89a3421d1001d82ebb0d436c (diff) | |
| download | python-setuptools-git-42f0cf2d17c82ec2fde18fa74ff2f7fc0a60d892.tar.gz | |
Fix typos
| -rw-r--r-- | distutils/util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distutils/util.py b/distutils/util.py index 64f06dd4..afc23c4e 100644 --- a/distutils/util.py +++ b/distutils/util.py @@ -134,14 +134,14 @@ def get_macosx_target_ver(): """Return the version of macOS for which we are building. The target version defaults to the version in sysconfig latched at time - the Python interpreter was built, unless overriden by an environment + the Python interpreter was built, unless overridden by an environment variable. If neither source has a value, then None is returned""" syscfg_ver = get_macosx_target_ver_from_syscfg() env_ver = os.environ.get(MACOSX_VERSION_VAR) if env_ver: - # Validate overriden version against sysconfig version, if have both. + # Validate overridden version against sysconfig version, if have both. # Ensure that the deployment target of the build process is not less # than 10.3 if the interpreter was built for 10.3 or later. This # ensures extension modules are built with correct compatibility |
