Skip to content

Commit 12bd2a5

Browse files
authored
Refactor code to work with latest @graknlabs_dependencies (#119)
## What is the goal of this PR? Latest version of `@graknlabs_dependencies` updates `rules-python` and therefore all repos that depend on it need to bring imports to an up-to-date state. ## What are the changes implemented in this PR? Update `WORKSPACE` to match latest `@graknlabs_dependencies`
1 parent cb7063a commit 12bd2a5

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

WORKSPACE

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,11 @@ kt_register_toolchains()
4545
# Load //builder/python
4646
load("@graknlabs_dependencies//builder/python:deps.bzl", python_deps = "deps")
4747
python_deps()
48-
load("@rules_python//python:pip.bzl", "pip_repositories")
49-
pip_repositories()
5048

5149
# Load //tool/common
5250
load("@graknlabs_dependencies//tool/common:deps.bzl", "graknlabs_dependencies_ci_pip",
5351
graknlabs_dependencies_tool_maven_artifacts = "maven_artifacts")
5452
graknlabs_dependencies_ci_pip()
55-
load("@graknlabs_dependencies_ci_pip//:requirements.bzl", graknlabs_dependencies_pip_install = "pip_install")
56-
graknlabs_dependencies_pip_install()
5753

5854
# Load //builder/grpc
5955
load("@graknlabs_dependencies//builder/grpc:deps.bzl", grpc_deps = "deps")
@@ -90,8 +86,6 @@ rules_pkg_dependencies()
9086
# Load //pip
9187
load("@graknlabs_bazel_distribution//pip:deps.bzl", pip_deps = "deps")
9288
pip_deps()
93-
load("@graknlabs_bazel_distribution_pip//:requirements.bzl", graknlabs_bazel_distribution_pip_install = "pip_install")
94-
graknlabs_bazel_distribution_pip_install()
9589

9690
# Load //github
9791
load("@graknlabs_bazel_distribution//github:deps.bzl", github_deps = "deps")

dependencies/graknlabs/repositories.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ def graknlabs_dependencies():
2121
git_repository(
2222
name = "graknlabs_dependencies",
2323
remote = "https://github.com/graknlabs/dependencies",
24-
commit = "d8cce4fbec3c059232b9101a0c75422cd2e0ea7a", # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_dependencies
24+
commit = "36bc9911558dc4a81f1f467d5a080033b62852fe", # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_dependencies
2525
)

0 commit comments

Comments
 (0)