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

Commit b7d96a5

Browse files
author
Ganeshwara Hananda
committed
Using a bazel-distribution from the 'core-1.8-compatibility' branch which reverts the change to assemble_pip which will create bad pip packages
1 parent 92f298a commit b7d96a5

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

WORKSPACE

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ graknlabs_dependencies_ci_pip_install()
5858
#####################################################################
5959
# Load @graknlabs_bazel_distribution (from @graknlabs_dependencies) #
6060
#####################################################################
61-
load("@graknlabs_dependencies//distribution:deps.bzl", distribution_deps = "deps")
62-
distribution_deps()
61+
load("//dependencies/graknlabs:repositories.bzl", "graknlabs_bazel_distribution")
62+
graknlabs_bazel_distribution()
6363

6464
pip3_import(
6565
name = "graknlabs_bazel_distribution_pip",

dependencies/graknlabs/repositories.bzl

+7
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@
1717

1818
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
1919

20+
def graknlabs_bazel_distribution():
21+
git_repository(
22+
name = "graknlabs_bazel_distribution",
23+
remote = "https://github.com/graknlabs/bazel-distribution",
24+
commit = "fa1c551bb39955f4cc0f4c5d7e801832e5594dd5"
25+
)
26+
2027
def graknlabs_dependencies():
2128
git_repository(
2229
name = "graknlabs_dependencies",

0 commit comments

Comments
 (0)