aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2024-12-19 20:02:10 +0300
committerthegeorg <thegeorg@yandex-team.com>2024-12-19 21:13:22 +0300
commit0c60168208f5d94be0d7783610af8cd47e1f68cc (patch)
treec8adfd5eda12d7bdb1cda39a550a706310864fa6 /contrib/python
parent3bf2a018f9e680aa955169cdbf0d5bcf9de9a49f (diff)
downloadydb-0c60168208f5d94be0d7783610af8cd47e1f68cc.tar.gz
Mandate string normalization in yamaker import specs
commit_hash:6d2a56c5f8e052fb718c9da2ce6d1eb010185b51
Diffstat (limited to 'contrib/python')
-rw-r--r--contrib/python/Pillow/py3/.yandex_meta/__init__.py4
-rw-r--r--contrib/python/grpcio/py3/.yandex_meta/__init__.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/contrib/python/Pillow/py3/.yandex_meta/__init__.py b/contrib/python/Pillow/py3/.yandex_meta/__init__.py
index 248ce1165e..63d5c8ea50 100644
--- a/contrib/python/Pillow/py3/.yandex_meta/__init__.py
+++ b/contrib/python/Pillow/py3/.yandex_meta/__init__.py
@@ -47,8 +47,8 @@ def post_install(self):
{
"NOT OPENSOURCE": Linkable(
CFLAGS=["-DHAVE_LIBIMAGEQUANT"],
- PEERDIR=['contrib/libs/libimagequant'],
- ADDINCL=['contrib/libs/libimagequant'],
+ PEERDIR=["contrib/libs/libimagequant"],
+ ADDINCL=["contrib/libs/libimagequant"],
),
}
),
diff --git a/contrib/python/grpcio/py3/.yandex_meta/__init__.py b/contrib/python/grpcio/py3/.yandex_meta/__init__.py
index d519c459ee..5e4e2c47ca 100644
--- a/contrib/python/grpcio/py3/.yandex_meta/__init__.py
+++ b/contrib/python/grpcio/py3/.yandex_meta/__init__.py
@@ -57,7 +57,7 @@ def post_install(self):
# see https://github.com/grpc/grpc/blob/v1.45.0/tools/bazel.rc#L103
pb.after(
"ADDINCL",
- Switch({'SANITIZER_TYPE == undefined': Linkable(CXXFLAGS=["-fno-sanitize=function"])}),
+ Switch({"SANITIZER_TYPE == undefined": Linkable(CXXFLAGS=["-fno-sanitize=function"])}),
)