Skip to content

Commit

Permalink
REVERT ME: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
huonw committed Sep 16, 2024
1 parent e97e079 commit 3a30538
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/pants/bin/pants_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from pants.option.option_value_container import OptionValueContainer
from pants.option.options_bootstrapper import OptionsBootstrapper
from pants.util.docutil import doc_url
from pants.util.osutil import is_macos_before_12
from pants.util.osutil import is_macos_before_12, _macos_major_version
from pants.util.strutil import softwrap

logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -134,7 +134,7 @@ def run(self, start_time: float) -> ExitCode:
softwrap(
f"""
Future versions of Pants will only run on macOS 12 and newer, but this machine
appears older ({platform.platform()}).
appears older ({platform.platform()} => major version {_macos_major_version()}).
You can temporarily silence this warning with the
`[GLOBAL].allow_deprecated_macos_before_12` option. If you have questions or
Expand Down

0 comments on commit 3a30538

Please sign in to comment.