Skip to content

Commit 9144ce8

Browse files
committed
cleanup
1 parent 98dea66 commit 9144ce8

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

MODULE.bazel

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -184,63 +184,55 @@ uv.platform(
184184
"@platforms//os:macos",
185185
"@platforms//cpu:aarch64",
186186
],
187-
flag_values = {},
188187
)
189188
uv.platform(
190189
name = "aarch64-unknown-linux-gnu",
191190
compatible_with = [
192191
"@platforms//os:linux",
193192
"@platforms//cpu:aarch64",
194193
],
195-
flag_values = {},
196194
)
197195
uv.platform(
198196
name = "powerpc64-unknown-linux-gnu",
199197
compatible_with = [
200198
"@platforms//os:linux",
201199
"@platforms//cpu:ppc",
202200
],
203-
flag_values = {},
204201
)
205202
uv.platform(
206203
name = "powerpc64le-unknown-linux-gnu",
207204
compatible_with = [
208205
"@platforms//os:linux",
209206
"@platforms//cpu:ppc64le",
210207
],
211-
flag_values = {},
212208
)
213209
uv.platform(
214210
name = "s390x-unknown-linux-gnu",
215211
compatible_with = [
216212
"@platforms//os:linux",
217213
"@platforms//cpu:s390x",
218214
],
219-
flag_values = {},
220215
)
221216
uv.platform(
222217
name = "x86_64-apple-darwin",
223218
compatible_with = [
224219
"@platforms//os:macos",
225220
"@platforms//cpu:x86_64",
226221
],
227-
flag_values = {},
228222
)
229223
uv.platform(
230224
name = "x86_64-pc-windows-msvc",
231225
compatible_with = [
232226
"@platforms//os:windows",
233227
"@platforms//cpu:x86_64",
234228
],
235-
flag_values = {},
236229
)
237230
uv.platform(
238231
name = "x86_64-unknown-linux-gnu",
239232
compatible_with = [
240233
"@platforms//os:linux",
241234
"@platforms//cpu:x86_64",
242235
],
243-
flag_values = {},
244236
)
245237

246238
uv_dev = use_extension(

python/uv/private/uv.bzl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ platform = tag_class(
6565
"compatible_with": attr.label_list(
6666
doc = "The compatible with constraint values for toolchain resolution",
6767
),
68-
"flag_values": attr.label_keyed_string_dict(
69-
doc = "The flag values for toolchain resolution",
70-
),
7168
"name": attr.string(
7269
doc = "The platform string used in the UV repository to denote the platform triple.",
7370
mandatory = True,
@@ -113,7 +110,6 @@ def _uv_toolchain_extension(module_ctx):
113110
config["platforms"].setdefault(platform_attr.name, struct(
114111
name = platform_attr.name.replace("-", "_").lower(),
115112
compatible_with = platform_attr.compatible_with,
116-
flag_values = platform_attr.flag_values,
117113
))
118114

119115
for config_attr in mod.tags.config:

0 commit comments

Comments
 (0)