diff options
author | mikhnenko <mikhnenko@yandex-team.com> | 2024-04-11 19:06:18 +0300 |
---|---|---|
committer | mikhnenko <mikhnenko@yandex-team.com> | 2024-04-11 19:16:28 +0300 |
commit | 9fba1bddfd89cb0d0d93cce75a5b77a86743abd8 (patch) | |
tree | 873456f7a65d87ec730ba4e191a9fddceab13cf1 /build | |
parent | 20b0215d972706b6c6d9aacaf0c8c7e969e73c4c (diff) | |
download | ydb-9fba1bddfd89cb0d0d93cce75a5b77a86743abd8.tar.gz |
Disable warnings in py3 flatbuffers
Отключаем по аналогии с C++
6d0d16beb8caa061db8fa7ceccf70df80710b76b
Diffstat (limited to 'build')
-rw-r--r-- | build/conf/fbs.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/conf/fbs.conf b/build/conf/fbs.conf index 81ce899dc1..000ec9a1eb 100644 --- a/build/conf/fbs.conf +++ b/build/conf/fbs.conf @@ -22,7 +22,7 @@ _PY_FBS_DEPS=contrib/python/flatbuffers ### processed when --add-flatbuf-result flag is specified on the command line ### for 'ya make ...' (tar archive is extracted to output directory). macro FBS_TO_PYSRC(OUT_NAME, IN_FBS_FILES...) { - .CMD=${cwd:ARCADIA_BUILD_ROOT} ${tool:FLATC} --python --python-typing --gen-mutable ${FLATC_FLAGS_VALUE} ${pre=-I :_FLATC__INCLUDE} -o ${BINDIR} ${input:IN_FBS_FILES} && $YMAKE_PYTHON3 ${input:"build/scripts/tar_sources.py"} --exts .py --input $BINDIR --output ${output;noauto;tared:OUT_NAME.py3.fbs.pysrc} ${kv;hide:"p FP"} ${kv;hide:"pc light-green"} ${kv;hide:"tared_kind nodir"} ${hide:FBS_FAKEID} + .CMD=${cwd:ARCADIA_BUILD_ROOT} ${tool:FLATC} --python --no-warnings --python-typing --gen-mutable ${FLATC_FLAGS_VALUE} ${pre=-I :_FLATC__INCLUDE} -o ${BINDIR} ${input:IN_FBS_FILES} && $YMAKE_PYTHON3 ${input:"build/scripts/tar_sources.py"} --exts .py --input $BINDIR --output ${output;noauto;tared:OUT_NAME.py3.fbs.pysrc} ${kv;hide:"p FP"} ${kv;hide:"pc light-green"} ${kv;hide:"tared_kind nodir"} ${hide:FBS_FAKEID} } macro FBS_TO_PY2SRC(OUT_NAME, IN_FBS_FILES...) { |