Skip to content

Commit 1e75057

Browse files
committed
chore: Re-enable layering_check now that rules_python supports it.
1 parent e2c12f4 commit 1e75057

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

BUILD.bazel

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
load("//third_party/python:build_defs.bzl", "pyx_library")
22
load("//tools/project:build_defs.bzl", "project")
33

4-
package(features = ["layering_check"])
5-
64
project()
75

86
genrule(
@@ -24,5 +22,6 @@ pyx_library(
2422
],
2523
cdeps = ["//c-toxcore"],
2624
cython_directives = {"language_level": "3"},
25+
tags = ["no-cross"],
2726
visibility = ["//visibility:public"],
2827
)

test/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ load("@rules_python//python:defs.bzl", "py_test")
44
name = src[:-3],
55
size = "small",
66
srcs = [src],
7+
tags = ["no-cross"],
78
deps = ["//py_toxcore_c:pytox"],
89
) for src in glob(["**/*.py"])]

0 commit comments

Comments
 (0)