|
16 | 16 |
|
17 | 17 | UV_PLATFORMS = { |
18 | 18 | "aarch64-apple-darwin": struct( |
19 | | - default_repo_name = "rules_python_uv_darwin_aarch64", |
| 19 | + default_repo_name = "uv_darwin_aarch64", |
20 | 20 | compatible_with = [ |
21 | 21 | "@platforms//os:macos", |
22 | 22 | "@platforms//cpu:aarch64", |
23 | 23 | ], |
24 | 24 | ), |
25 | 25 | "aarch64-unknown-linux-gnu": struct( |
26 | | - default_repo_name = "rules_python_uv_linux_aarch64", |
| 26 | + default_repo_name = "uv_linux_aarch64", |
27 | 27 | compatible_with = [ |
28 | 28 | "@platforms//os:linux", |
29 | 29 | "@platforms//cpu:aarch64", |
30 | 30 | ], |
31 | 31 | ), |
32 | 32 | "powerpc64le-unknown-linux-gnu": struct( |
33 | | - default_repo_name = "rules_python_uv_linux_ppc", |
| 33 | + default_repo_name = "uv_linux_ppc", |
34 | 34 | compatible_with = [ |
35 | 35 | "@platforms//os:linux", |
36 | 36 | "@platforms//cpu:ppc", |
37 | 37 | ], |
38 | 38 | ), |
39 | 39 | "s390x-unknown-linux-gnu": struct( |
40 | | - default_repo_name = "rules_python_uv_linux_s390x", |
| 40 | + default_repo_name = "uv_linux_s390x", |
41 | 41 | compatible_with = [ |
42 | 42 | "@platforms//os:linux", |
43 | 43 | "@platforms//cpu:s390x", |
44 | 44 | ], |
45 | 45 | ), |
46 | 46 | "x86_64-apple-darwin": struct( |
47 | | - default_repo_name = "rules_python_uv_darwin_x86_64", |
| 47 | + default_repo_name = "uv_darwin_x86_64", |
48 | 48 | compatible_with = [ |
49 | 49 | "@platforms//os:macos", |
50 | 50 | "@platforms//cpu:x86_64", |
51 | 51 | ], |
52 | 52 | ), |
53 | 53 | "x86_64-pc-windows-msvc": struct( |
54 | | - default_repo_name = "rules_python_uv_windows_x86_64", |
| 54 | + default_repo_name = "uv_windows_x86_64", |
55 | 55 | compatible_with = [ |
56 | 56 | "@platforms//os:windows", |
57 | 57 | "@platforms//cpu:x86_64", |
58 | 58 | ], |
59 | 59 | ), |
60 | 60 | "x86_64-unknown-linux-gnu": struct( |
61 | | - default_repo_name = "rules_python_uv_linux_x86_64", |
| 61 | + default_repo_name = "uv_linux_x86_64", |
62 | 62 | compatible_with = [ |
63 | 63 | "@platforms//os:linux", |
64 | 64 | "@platforms//cpu:x86_64", |
|
0 commit comments