File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
lib-graalpython/patches/ray
lib-python/3/distutils/command Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -32,16 +32,15 @@ index c9ba801319..6c25d57934 100644
32
32
# Thread sanitizer configuration:
33
33
build:tsan --per_file_copt="-bazel-ray/external/com_github_antirez_redis/.*$@-fsanitize=thread"
34
34
diff --git a/bazel/ray.bzl b/bazel/ray.bzl
35
- index 4cd1aa2390..d051a6a36b 100644
35
+ index 4cd1aa2390..95250a422c 100644
36
36
--- a/bazel/ray.bzl
37
37
+++ b/bazel/ray.bzl
38
- @@ -30,6 +30,10 @@ PYX_COPTS = select({
38
+ @@ -30,6 +30,9 @@ PYX_COPTS = select({
39
39
"//conditions:default": [
40
40
# Ignore this warning since CPython and Cython have issue removing deprecated tp_print on MacOS
41
41
"-Wno-deprecated-declarations",
42
42
+ "-Wno-unused-variable",
43
43
+ "-Wno-unused-function",
44
- + "-Wno-unused-but-set-parameter",
45
44
+ "-Wno-sign-compare",
46
45
],
47
46
}) + select({
Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ def finalize_options(self):
355
355
# module distribution is pure or not. Of course, if the user
356
356
# already specified install_lib, use their selection.
357
357
if self .install_lib is None :
358
- if self .distribution .ext_modules : # has extensions: non-pure
358
+ if self .distribution .has_ext_modules (): # has extensions: non-pure
359
359
self .install_lib = self .install_platlib
360
360
else :
361
361
self .install_lib = self .install_purelib
You can’t perform that action at this time.
0 commit comments