mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
Previously, we were using 8.0.0rc1. In particular, this upgrade means we need to explicitly import more rules, as they've been moved out of the core bazel repo.
10 lines
191 B
Python
10 lines
191 B
Python
load("@rules_python//python:defs.bzl", "py_library")
|
|
|
|
py_library(
|
|
name = "utils",
|
|
srcs = [
|
|
"diagnostics_test_utils.py",
|
|
],
|
|
visibility = ["//swift:__subpackages__"],
|
|
)
|