chore: use from __future__ import annotations
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import platform
|
||||
import subprocess
|
||||
from typing import Tuple
|
||||
|
||||
import pytest
|
||||
|
||||
@@ -14,7 +15,7 @@ ALL_MACOS_WHEELS = {
|
||||
}
|
||||
|
||||
|
||||
def get_xcode_version() -> Tuple[int, int]:
|
||||
def get_xcode_version() -> tuple[int, int]:
|
||||
output = subprocess.run(
|
||||
["xcodebuild", "-version"],
|
||||
text=True,
|
||||
|
||||
Reference in New Issue
Block a user