Skip to content

Commit

Permalink
Upgrade rules_pkg to 0.3.0 to remove Python 2 dependency.
Browse files Browse the repository at this point in the history
Earlier versions have `build_tar` using `python_version=PY2`, which
newer versions of Bazel will no longer support.

Fixes #3619
  • Loading branch information
rickeylev authored and alexeagle committed Jan 31, 2023
1 parent e5c7a3d commit 4b8bcf2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ def build_bazel_rules_nodejs_dev_dependencies():
http_archive,
name = "rules_pkg",
urls = [
"https://github.com/bazelbuild/rules_pkg/releases/download/0.2.6-1/rules_pkg-0.2.6.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.2.6/rules_pkg-0.2.6.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.3.0/rules_pkg-0.3.0.tar.gz",
"https://github.com/bazelbuild/rules_pkg/releases/download/0.3.0/rules_pkg-0.3.0.tar.gz",
],
sha256 = "aeca78988341a2ee1ba097641056d168320ecc51372ef7ff8e64b139516a4937",
sha256 = "6b5969a7acd7b60c02f816773b06fcf32fbe8ba0c7919ccdc2df4f8fb923804a",
)

maybe(
Expand Down

0 comments on commit 4b8bcf2

Please sign in to comment.