Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.

Commit 957ec0d

Browse files
authored
Use renamed rule from @graknlabs_bazel_distribution (#54)
## What is the goal of this PR? typedb/bazel-distribution#155 renamed `new_deploy_pip` to `deploy_pip` to have consistent naming. This PR utilizes new renamed rule. ## What are the changes implemented in this PR? - Upgrade `@graknlabs_build_tools` to latest `master` - Use `deploy_pip` in place of `new_deploy_pip`
1 parent 5f9cd68 commit 957ec0d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ load("@io_bazel_rules_python//python:python.bzl", "py_library", "py_test")
2323
load("@graknlabs_client_python_pip//:requirements.bzl",
2424
graknlabs_client_python_requirement = "requirement")
2525

26-
load("@graknlabs_bazel_distribution//pip:rules.bzl", "assemble_pip", "new_deploy_pip")
26+
load("@graknlabs_bazel_distribution//pip:rules.bzl", "assemble_pip", "deploy_pip")
2727
load("@graknlabs_bazel_distribution_pip//:requirements.bzl",
2828
graknlabs_bazel_distribution_requirement = "requirement")
2929

@@ -76,7 +76,7 @@ assemble_pip(
7676
)
7777

7878

79-
new_deploy_pip(
79+
deploy_pip(
8080
name = "deploy-pip",
8181
target = ":assemble-pip",
8282
deployment_properties = "@graknlabs_build_tools//:deployment.properties",

dependencies/graknlabs/dependencies.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def graknlabs_build_tools():
2222
git_repository(
2323
name = "graknlabs_build_tools",
2424
remote = "https://github.com/graknlabs/build-tools",
25-
commit = "e1875797063b86386072034e65af2f40dc1fb07c", # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_build_tools
25+
commit = "2112c007d1f2341d7d73b0a101ea139eefff58a4", # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_build_tools
2626
)
2727

2828
def graknlabs_grakn_core():

0 commit comments

Comments
 (0)