Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kianmeng authored and jaraco committed Oct 19, 2021
1 parent b5030e0 commit 42f0cf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions distutils/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 42f0cf2

Please sign in to comment.