File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -125,16 +125,14 @@ test:
125
125
if "MACOSX_DEPLOYMENT_TARGET" in os.environ:
126
126
target = tuple(int(p) for p in os.environ["MACOSX_DEPLOYMENT_TARGET"].split("."))
127
127
# let's add universal2 platform for this wheel.
128
- additional_platforms = [
129
- f"macosx_{target[0]}_{target[1]}_universal2",
130
- ]
128
+ additional_platforms = ["macosx_{}_{}_universal2".format(*target)]
131
129
132
130
# given pip support for universal2 was added after arm64 introduction
133
131
# let's also add arm64 platform.
134
132
arm64_target = target
135
133
if arm64_target < (11, 0):
136
134
arm64_target = (11, 0)
137
- additional_platforms.append(f "macosx_{arm64_target[0] }_{arm64_target[1] }_arm64")
135
+ additional_platforms.append("macosx_{}_{}_arm64".format(*arm64_target) )
138
136
139
137
if target < (11, 0):
140
138
# They're were also issues with pip not picking up some universal2 wheels, tag twice
You can’t perform that action at this time.
0 commit comments