Skip to content

Commit ddd1c21

Browse files
committed
make workspace happy; rename internal repo
1 parent 50b3702 commit ddd1c21

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ internal_dev_deps = use_extension(
101101
use_repo(
102102
internal_dev_deps,
103103
"buildkite_config",
104-
"rules_python_runtime_env",
104+
"rules_python_runtime_env_tc_info",
105105
"wheel_for_testing",
106106
)
107107

internal_dev_setup.bzl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ load("@rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_
2424
load("//:version.bzl", "SUPPORTED_BAZEL_VERSIONS")
2525
load("//python:versions.bzl", "MINOR_MAPPING", "TOOL_VERSIONS")
2626
load("//python/private:pythons_hub.bzl", "hub_repo") # buildifier: disable=bzl-visibility
27+
load("//python/private:runtime_env_repo.bzl", "runtime_env_repo")
2728
load("//python/private/pypi:deps.bzl", "pypi_deps") # buildifier: disable=bzl-visibility
2829

2930
def rules_python_internal_setup():
@@ -40,6 +41,8 @@ def rules_python_internal_setup():
4041
python_versions = sorted(TOOL_VERSIONS.keys()),
4142
)
4243

44+
runtime_env_repo(name = "rules_python_runtime_env_tc_info")
45+
4346
pypi_deps()
4447

4548
bazel_skylib_workspace()

python/private/internal_dev_deps.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def _internal_dev_deps_impl(mctx):
3838
name = "buildkite_config",
3939
toolchain = "ubuntu1804-bazel-java11",
4040
)
41-
runtime_env_repo(name = "rules_python_runtime_env")
41+
runtime_env_repo(name = "rules_python_runtime_env_tc_info")
4242

4343
internal_dev_deps = module_extension(
4444
implementation = _internal_dev_deps_impl,

tests/runtime_env_toolchain/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
load("@rules_python_runtime_env//:info.bzl", "PYTHON_VERSION")
15+
load("@rules_python_runtime_env_tc_info//:info.bzl", "PYTHON_VERSION")
1616
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test")
1717
load("//tests/support:support.bzl", "CC_TOOLCHAIN")
1818
load(":runtime_env_toolchain_tests.bzl", "runtime_env_toolchain_test_suite")

0 commit comments

Comments
 (0)