Skip to content

Commit

Permalink
Remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
joerick committed Jan 30, 2021
1 parent a79f0ef commit 2def20d
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions cibuildwheel/macos.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,6 @@ def get_macos_version() -> Tuple[int, int]:
return cast(Tuple[int, int], version)


def get_xcode_version() -> Tuple[int, int]:
output = subprocess.check_output(
['xcodebuild', '-version'],
universal_newlines=True,
)
lines = output.splitlines()
_, version_str = lines[0].split()

version_parts = version_str.split('.')
return (int(version_parts[0]), int(version_parts[1]))


def get_macos_sdks() -> List[str]:
output = subprocess.check_output(
['xcodebuild', '-showsdks'],
Expand Down

0 comments on commit 2def20d

Please sign in to comment.