Skip to content

Commit

Permalink
Merge pull request #103 from aiuto/nits
Browse files Browse the repository at this point in the history
Last few fixes before the next release
  • Loading branch information
aiuto authored Jun 16, 2023
2 parents c131f01 + cf00500 commit acee901
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ module(

# Only for development
bazel_dep(name = "rules_pkg", version = "0.7.0", dev_dependency = True)
bazel_dep(name = "rules_python", version = "0.19.0", dev_dependency = True)
bazel_dep(name = "rules_python", version = "0.23.0", dev_dependency = True)
bazel_dep(name = "stardoc", version = "0.5.3", dev_dependency = True)
5 changes: 4 additions & 1 deletion rules/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ trace(

filegroup(
name = "standard_package",
srcs = glob(["**"]),
srcs = glob([
"**/BUILD",
"**/*.bzl",
]),
)

# Do not create a bzl_library(). That would create a dependency loop back
Expand Down
1 change: 1 addition & 0 deletions tests/apps/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Test cases for license rules: Sample app

load("@rules_license//sample_reports:licenses_used.bzl", "licenses_used")
load("@rules_python//python:defs.bzl", "py_test")

package(default_visibility = ["//examples:__subpackages__"])

Expand Down
2 changes: 2 additions & 0 deletions tools/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

"""License declaration and compliance checking tools."""

load("@rules_python//python:defs.bzl", "py_binary")

package(
default_applicable_licenses = ["//:license", "//:package_info"],
default_visibility = ["//visibility:public"],
Expand Down

0 comments on commit acee901

Please sign in to comment.